forked from stephrdev/django-formwizard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (26 loc) · 1003 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
30
31
from setuptools import setup, find_packages
setup(
name='django-formwizard',
version='1.3.10',
description='A FormWizard for Django with multiple storage backends',
long_description=open("README.rst").read(),
author='Bradley Ayers',
author_email='[email protected]',
url='http://github.com/bradleyayers/django-formwizard/',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True, # declarations in MANIFEST.in
install_requires=['Django >=1.3', 'django-attest >=0.3.0'],
tests_require=['unittest-xml-reporting'],
test_loader='tests:loader',
test_suite='tests.everything',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)