-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (52 loc) · 1.58 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
from setuptools import setup
# Hack to get tests to work on py2.7
try:
import multiprocessing, logging
except Exception:
pass
setup(
name='tw2.dynforms',
version='2.0.1',
description='Dynamic form widgets for ToscaWidgets 2, a web widget toolkit.',
long_description = open('README.rst').read().split('\n\n', 1)[1],
author='Paul Johnston & contributors',
author_email='[email protected]',
url="http://toscawidgets.org/",
download_url="https://pypi.python.org/pypi/tw2.dynforms/",
license="MIT",
install_requires=[
"tw2.core>=2.0.0",
"tw2.forms>=2.0b4",
"Genshi",
],
packages=['tw2', 'tw2.dynforms',],
namespace_packages = ['tw2'],
zip_safe=False,
include_package_data=True,
test_suite = 'nose.collector',
tests_require = [
'nose',
'formencode',
'BeautifulSoup',
'strainer',
'WebTest',
],
entry_points="""
[tw2.widgets]
# Register your widgets so they can be listed in the WidgetBrowser
widgets = tw2.dynforms
""",
keywords = [
'toscawidgets.widgets',
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Environment :: Web Environment :: ToscaWidgets',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Widget Sets',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)