-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
56 lines (46 loc) · 1.42 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
56
import os
from setuptools import setup, find_packages
__version__ = '1.3'
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except Exception:
long_description = None
setup(
name='django12factor',
version=__version__,
packages=find_packages(exclude=['test*']),
include_package_data=True,
zip_safe=True,
# metadata for upload to PyPI
author='Kristian Glass',
author_email='[email protected]',
maintainer='Jonas Maurus',
maintainer_email='[email protected]',
url='https://github.com/doismellburning/django12factor',
description='django12factor: Bringing 12factor to Django',
long_description=long_description,
license='MIT',
keywords='django 12factor configuration',
install_requires=(
"dj-database-url",
"dj-email-url",
"django-cache-url",
"six",
"django",
),
tests_require=(
"nose",
),
test_suite='nose.collector',
classifiers=(
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
),
)