-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 822 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 822 Bytes
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
from distutils.core import setup
long_description = open('README.rst').read()
setup(
name='django-gatekeeper',
version="0.4.0a",
package_dir={'gatekeeper': 'gatekeeper'},
packages=['gatekeeper'],
description='Django object moderation',
author='Jeremy Carbaugh',
author_email='jcarbaugh@sunlightfoundation.com',
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',
],
)