-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1005 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 1005 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
27
28
29
30
31
32
33
34
35
#!/bin/env python
import os
from distutils.core import setup
name = 'django-secureform'
version = '0.3'
release = '2'
versrel = version + '-' + release
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
long_description = file(readme).read()
setup(
name = name,
version = versrel,
description = 'Provides protection against spammers and scammers.',
long_description = long_description,
author = 'Ben Timby',
author_email = 'btimby@gmail.com',
maintainer = 'Ben Timby',
maintainer_email = 'btimby@gmail.com',
url = 'http://github.com/smartfile/' + name + '/',
license = 'GPLv3',
packages = [
"django_secureform",
"django_secureform.forms",
],
classifiers = (
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)