forked from samluescher/django-form-designer
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
33 lines (31 loc) · 859 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
32
33
# encoding=utf8
from setuptools import find_packages, setup
setup(
name="django-form-designer-ai",
version="2.0.0",
url="http://github.com/andersinno/django-form-designer-ai",
license="BSD",
maintainer="Anders Innovations Ltd",
maintainer_email="[email protected]",
packages=find_packages(
".",
include=[
"form_designer",
"form_designer.*",
],
),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=[
"django-picklefield",
],
zip_safe=False,
)