forked from joke2k/django-environ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.38 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
from __future__ import unicode_literals
from setuptools import setup, find_packages
from environ import environ
here = environ.Path(__file__, is_file=True)
README = open(here('README.rst')).read()
version = ".".join(map(str, environ.__version__))
author = environ.__author__
description = environ.__doc__
install_requires = [] # 'django'
setup(name='django-environ',
version=version,
description=description,
long_description=README,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Framework :: Django'
],
keywords='django environment variables 12factor',
author=author,
author_email='[email protected]',
url='http://github.com/joke2k/django-environ',
license='MIT License',
packages=find_packages(),
include_package_data=True,
#py_modules=['environ'],
test_suite='environ.test.load_suite',
zip_safe=False,
install_requires=install_requires,
)