-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.15 KB
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
#!/usr/bin/env python
import distribute_setup
import sys
distribute_setup.use_setuptools()
from setuptools import setup
INSTALL_REQUIRES = ["keyring", "docopt"]
if sys.version_info[0] < 3: # Install the backport of configparser
INSTALL_REQUIRES.append("configparser")
setup(name='djset',
version='0.2.2',
description="Utilities for Django settings secrets",
long_description=open('README.md').read(),
author='Brett Haydon',
author_email='brett@haydon.id.au',
url='https://github.com/bretth/djset',
packages=['djset'],
py_modules=['distribute_setup'],
license='LICENSE.txt',
entry_points={"console_scripts":
["djs_locate_settings = djset.utils:locate_settings",
"djsecret = djset.commands:djsecret",
"djconfig = djset.commands:djconfig",
]},
scripts=['dexportunset.sh',],
install_requires = INSTALL_REQUIRES,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development',
]
)