forked from cuker/django-configstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 1.01 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
#!/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.1"
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/cuker/django-configstore',
packages=find_packages(exclude=['ez_setup', 'test', 'tests']),
test_suite='tests.runtests.runtests',
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',
],
)