forked from ella/django-appdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (49 loc) · 1.53 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
48
49
50
51
52
53
54
55
from os.path import join, dirname
from setuptools import setup
VERSION = (0, 3, 2)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = [
'Django',
'six'
]
test_requires = [
'nose',
'coverage',
]
setup(
name='django-appdata',
description='Extendable field that enables Django apps to store their data on your models.',
url='https://github.com/ella/django-appdata/',
long_description=long_description,
version=__versionstr__,
author='Ella Development Team',
author_email='[email protected]',
license='BSD',
packages=['app_data'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
install_requires=install_requires,
test_suite='test_app_data.run_tests.run_all',
tests_require=test_requires,
)