-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 874 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-kungfu',
version='0.2',
description=('A Flasky approach to distributed Django configuration'),
long_description=open('README').read(),
keywords='django settings overrides flasky',
author='Ion Scerbatiuc',
author_email='[email protected]',
url='https://github.com/delinhabit/django-kungfu',
license='BSD',
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
)