-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 901 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
from setuptools import setup, find_packages
setup(
name = "cmsplugin-forms-builder",
version = __import__("cmsplugin_forms_builder").__version__,
author = "William Dangerfield",
author_email = "dangerfield@gmail.com",
description = ("A CMS plugin for django-forms-builder"),
long_description = open("README.rst").read(),
url = "https://github.com/dangerfield/cmsplugin_forms_builder",
zip_safe = False,
include_package_data = True,
packages = find_packages(),
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
)