-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (58 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import find_packages
from setuptools import setup
version = '1.2'
shortdesc = 'YAFOWIL - Demo Application'
longdesc = ""
setup(
name='yafowil.demo',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
keywords='html input widgets form compound',
author='Yafowil Contributors',
author_email='[email protected]',
url=u'http://github.com/conestack/yafowil.demo',
license='Simplified BSD and CC-BY-SA',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['yafowil'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'sphinx',
'Chameleon',
'docutils',
'yafowil',
'yafowil.webob',
'yafowil.yaml',
'yafowil.bootstrap',
# add-on widgets
# 'yafowil.widget.alohaeditor',
'yafowil.widget.ace',
'yafowil.widget.array',
'yafowil.widget.autocomplete',
'yafowil.widget.chosen',
'yafowil.widget.cron',
'yafowil.widget.datetime',
'yafowil.widget.dict',
# 'yafowil.widget.dynatree',
'yafowil.widget.image',
'yafowil.widget.location',
'yafowil.widget.multiselect',
# 'yafowil.widget.recaptcha',
'yafowil.widget.richtext',
'yafowil.widget.select2',
'yafowil.widget.slider',
'yafowil.widget.wysihtml5',
],
entry_points="""
[yafowil.plugin]
register = yafowil.demo.loader:register
""")