-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
76 lines (69 loc) · 2.11 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
73
74
75
76
"""Setuptools setup file"""
import os
from setuptools import setup, find_packages
try:
import multiprocessing
import logging
except:
pass
setup(
name='tw2.devtools',
version='2.2.0.4',
description='The development tools for ToscaWidgets 2, a web widget toolkit.',
long_description=open('README.rst').read().split('\n\n', 1)[1],
author='Paul Johnston, Christopher Perkins, Alberto Valverde Gonzalez & contributors',
author_email='[email protected]',
url="http://toscawidgets.org/",
download_url="https://pypi.python.org/pypi/tw2.devtools/",
license='MIT',
install_requires=[
'tw2.core>=2.1.0a',
'gearbox',
'weberror',
'webhelpers',
'docutils',
"tw2.jquery",
"tw2.jqplugins.ui",
"pygments",
"decorator",
"genshi",
"mako",
],
extras_require={
'build_docs': [
"Sphinx",
],
},
tests_require=[
'WebTest',
'nose',
'sieve',
],
test_suite='nose.collector',
packages=find_packages(exclude=['ez_setup', 'tests']),
namespace_packages=['tw2'],
include_package_data=True,
exclude_package_data={"thirdparty": ["*"]},
entry_points="""
[paste.paster_create_template]
tw2.library=tw2.devtools.paste_template:ToscaWidgetsTemplate
[gearbox.commands]
tw2.browser=tw2.devtools.browser:WbCommand
[paste.server_runner]
tw2_dev_server=tw2.devtools.server:dev_server
""",
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Environment :: Web Environment :: ToscaWidgets',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Widget Sets',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)