forked from ella/django-appdata
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (41 loc) · 1.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from os.path import join, dirname
from setuptools import setup
VERSION = (0, 1, 7)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = [
'Django>=1.4.10',
]
test_requires = [
'nose',
'coverage',
]
setup(
name = 'django-appdata-mam',
description = "Extandable field that enables Django apps to store their data on your models.",
url = "https://github.com/MichalMaM/django-appdata/",
long_description = long_description,
version = __versionstr__,
author = 'Ella Development Team',
author_email = '[email protected]',
maintainer='Michal Dub',
maintainer_email='[email protected]',
license='BSD',
packages = ['app_data'],
zip_safe = False,
include_package_data = True,
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=install_requires,
test_suite='test_app_data.run_tests.run_all',
tests_require=test_requires,
)