forked from jamesturk/django-honeypot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 933 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
28
29
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name='django-honeypot',
version="0.3.0",
package_dir={'honeypot': 'honeypot'},
packages=['honeypot', 'honeypot.templatetags'],
description='Django honeypot field utilities',
author='James Turk',
author_email='[email protected]',
license='BSD License',
url='http://github.com/sunlightlabs/django-honeypot/',
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',
],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
)