-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
72 lines (65 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
from setuptools import setup, find_packages
import sys
# Hack to get tests working on python 2.7
import multiprocessing
import logging
f = open('README.rst')
long_description = f.read().strip()
long_description = long_description.split('split here', 1)[1]
f.close()
# Requirements to install buffet plugins and engines
_extra_genshi = ["Genshi >= 0.3.5"]
_extra_mako = ["Mako >= 0.1.1"]
tests_require = [
'nose',
'WebTest',
'sieve',
] + _extra_genshi + _extra_mako
if sys.version_info[0] < 3:
tests_require.append('FormEncode')
setup(
name='tw2.jqplugins.ui',
version='2.3.0',
description='toscawidgets2 wrapper for jquery-ui',
long_description=long_description,
author='Ralph Bean',
author_email='[email protected]',
license='MIT',
url='https://github.com/toscawidgets/tw2.jqplugins.ui',
install_requires=[
"tw2.core>=2.0b5",
"tw2.forms",
"tw2.jquery",
"six",
],
extras_require = {
'genshi': _extra_genshi,
'mako': _extra_mako,
},
tests_require=tests_require,
packages=['tw2', 'tw2.jqplugins', 'tw2.jqplugins.ui'],
namespace_packages=['tw2', 'tw2.jqplugins'],
zip_safe=False,
include_package_data=True,
test_suite = 'nose.collector',
entry_points="""
[tw2.widgets]
# Register your widgets so they can be listed in the WidgetBrowser
widgets = tw2.jqplugins.ui
""",
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',
'Programming Language :: JavaScript',
'License :: OSI Approved :: MIT License',
],
)