-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 945 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 945 Bytes
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
# coding: utf-8
from setuptools import setup
import os
README = os.path.join(os.path.dirname(__file__), 'README.rst')
setup(name='django-decouple',
version='1.1',
description='Strict separation of settings from code.',
long_description=open(README).read(),
author="Henrique Bastos", author_email="[email protected]",
license="MIT",
py_modules=['decouple'],
zip_safe=False,
platforms='any',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
url='http://github.com/henriquebastos/django-decouple/',)