-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·40 lines (37 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup, find_packages
LONG_DESCRIPTION = """
An application to allow for other apps to easily store site based configurations
"""
VERSION = "0.3"
setup(name='django-configstore',
version=VERSION,
description='An application to allow for other apps to easily store site based configurations',
long_description=LONG_DESCRIPTION,
author='Jason Kraus',
author_email='[email protected]',
url='http://github.com/webcube/django-configstore',
packages=find_packages(exclude=['ez_setup', 'test', 'tests']),
test_suite='tests.runtests.runtests',
tests_require=(
'pep8',
'coverage',
'django',
'nose',
'django-nose',
),
install_requires=(
'pycrypto==2.6',
),
include_package_data=True,
license = 'BSD',
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
"Framework :: Django",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)