-
Notifications
You must be signed in to change notification settings - Fork 149
/
setup.py
49 lines (45 loc) · 1.61 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# encoding=utf8
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-form-designer",
version = "0.8.0",
url = 'http://github.com/philomat/django-form-designer',
license = 'BSD',
description = "Design contact forms, search forms etc from the Django admin, without writing any code. Integrates with Django CMS.",
long_description = README,
author = 'Samuel Luescher',
author_email = 'sam at luescher dot org',
packages = [
'form_designer',
'form_designer.migrations',
'form_designer.templatetags',
'form_designer.contrib',
'form_designer.contrib.exporters',
'form_designer.contrib.cms_plugins',
'form_designer.contrib.cms_plugins.form_designer_form',
],
package_data = {
'form_designer': [
'static/form_designer/js/*.js',
'templates/admin/form_designer/formlog/change_list.html',
'templates/html/formdefinition/*.html',
'templates/html/formdefinition/forms/*.html',
'templates/html/formdefinition/forms/includes/*.html',
'templates/txt/formdefinition/*.txt',
'locale/*/LC_MESSAGES/*',
],
},
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',
]
)