-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (48 loc) · 1.59 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
from setuptools import setup, find_packages
f = open('README.rst')
long_description = f.read().strip()
long_description = long_description.split('split here', 1)[1]
f.close()
setup(
name='tw2.rrd',
version='2.1.0',
description='tw2/rrdtool mashups! plot your rrdtool data on the web',
long_description=long_description,
author='Ralph Bean',
author_email='[email protected]',
url='http://github.com/toscawidgets/tw2.rrd',
install_requires=[
"tw2.jqplugins.jqplot",
"tw2.jqplugins.flot",
"tw2.protovis.conventional",
"tw2.protovis.custom",
"tw2.protovis.hierarchies",
"tw2.jit",
# Constrain version due to the following bug
# http://code.google.com/p/pyrrd/issues/detail?id=26
"pyrrd==0.0.7",
],
packages=find_packages(exclude=['ez_setup']),
namespace_packages = ['tw2'],
zip_safe=False,
include_package_data=True,
entry_points="""
[tw2.widgets]
# Register your widgets so they can be listed in the WidgetBrowser
tw2.rrd = tw2.rrd
""",
keywords = [
'toscawidgets.widgets',
],
classifiers = [
'Development Status :: 4 - Beta',
'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',
],
)