-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 890 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
from distutils.core import setup
long_description = open('README.rst').read()
setup(
name='django-gatekeeper',
version="0.1",
package_dir={'gatekeeper': 'gatekeeper'},
packages=['gatekeeper'],
package_data={'gatekeeper': ['templates/admin/gatekeeper/*.html']},
description='Django object moderation',
author='Jeremy Carbaugh',
author_email='[email protected]',
license='BSD License',
url='http://github.com/sunlightlabs/django-gatekeeper/',
long_description=long_description,
platforms=["any"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Web Environment',
],
)