forked from swist/django-more
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (47 loc) · 1.22 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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
test_deps = [
'psycopg2',
'mysqlclient',
]
extras = {
'test': test_deps,
}
setup(
name='django-more',
version='0.2.6',
author='Ashley Waite',
author_email='[email protected]',
description='Django with more',
long_description=long_description,
url='https://github.com/ashleywaite/django-more',
packages=[
'patchy',
'django_more',
'django_more.fields',
'django_more.storages',
'django_enum',
'django_types',
],
install_requires=[
'django',
],
python_requires='>=3.4',
test_suite='tests.runtests.runtests',
tests_require=test_deps,
extras_require=extras,
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)