-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 921 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
from setuptools import setup, find_packages
setup(
name = "django-floppy-gumby",
version = "0.2",
author = "David Burke",
author_email = "[email protected]",
description = ("Gumby Framework forms for Django using floppy forms. A floppy and gumby project."),
license = "BSD",
keywords = "django gumby",
url = "https://github.com/burke-software/django-floppy-gumby",
packages=find_packages(),
include_package_data=True,
test_suite='setuptest.setuptest.SetupTestSuite',
tests_require=(
'django-setuptest',
'south',
),
classifiers=[
"Development Status :: 4 - Beta",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
"License :: OSI Approved :: BSD License",
],
install_requires=['django', 'django-floppyforms']
)