-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
32 lines (27 loc) · 853 Bytes
/
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
import codecs
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
with codecs.open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name="django-settings-export",
version='1.2.1',
author="Jakub Roztocil",
author_email="[email protected]",
description='This Django app allows you to export'
' certain settings to your templates.',
long_description=long_description,
license='BSD',
url='https://github.com/jakubroztocil/django-settings-export',
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
py_modules=['django_settings_export'],
install_requires=['django'],
)