-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.04 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.04 KB
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
from setuptools import setup
VERSION = "1.3.1"
setup(
name="Oz",
version=VERSION,
description="A batteries-included web framework built on Tornado",
author="Yusuf Simonson",
author_email="yusuf@themuse.com",
url="http://github.com/dailymuse/oz",
zip_safe=False,
packages=[
"oz",
"oz.aws_cdn",
"oz.bandit",
"oz.blinks",
"oz.core",
"oz.error_pages",
"oz.json_api",
"oz.redis",
"oz.redis_sessions",
"oz.sqlalchemy",
"oz.error_pages"
],
package_data={
"oz": [
"skeleton/*.py",
"skeleton/plugin/*.py",
"skeleton/plugin/tests/*.py",
]
},
install_requires=[
"tornado>=3.1",
"optfn>=0.4.1"
],
extras_require={
"oz.aws_cdn": ["boto>=2.47.0"],
"oz.redis": ["redis>=2.6.0"],
"oz.sqlalchemy": ["sqlalchemy>=0.7.8"],
"datadog": ["ddtrace>=0.12.1"]
},
entry_points={
"console_scripts": ["oz = oz.cli:main"]
}
)