forked from joke2k/django-environ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.48 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
import io
import os
here = os.path.abspath(os.path.dirname(__file__))
README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read()
version = '0.4.0'
author = 'joke2k'
description = "Django-environ allows you to utilize 12factor inspired environment " \
"variables to configure your Django application."
install_requires = ['django', 'six']
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(),
platforms=["any"],
include_package_data=True,
test_suite='environ.test.load_suite',
zip_safe=False,
install_requires=install_requires,
)