forked from brendonh/warp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 779 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 779 Bytes
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
from setuptools import setup, find_packages
setup(name="warp",
version="0.2.3",
zip_safe=False,
include_package_data=True,
description="Easy-to-use layer over twisted.web",
author="Brendon Hogger",
author_email="brendonh@taizilla.com",
url="http://wiki.github.com/brendonh/warp",
long_description=open('README').read(),
download_url="https://github.com/brendonh/warp/tarball/v0.2.3",
packages=find_packages('.') + ["twisted.plugins"],
install_requires=[
"twisted >= 12.3",
"storm >= 0.12",
"Mako >= 0.2.5",
"pytz",
"simplejson",
"prometheus-client >= 0.7.1"
],
package_data={
"twisted": ['plugins/warp_plugin.py'],
}
)