-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (35 loc) · 854 Bytes
/
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
#!/usr/bin/env python
import setuptools
if not getattr(setuptools, "_distribute", False):
raise SystemExit("Setuptools is not supported. Please install Distribute (create your virtualenv with --distribute)")
setup_requires = [
# d2to1 bootstrap
'd2to1',
# Testing dependencies (the application doesn't need them to *run*)
'nose',
'nosexcover',
'coverage',
'mock',
'webtest',
'yanc',
'Sphinx',
]
dependency_links=[
'http://simple.crate.io/',
]
setuptools.setup(
setup_requires=setup_requires,
d2to1=True,
dependency_links=dependency_links,
package_data={"velo": [
"templates/*.*",
"templates/*/*.*",
"static/*.*",
"static/*/*.*",
"static/*/*/*.*",
]},
entry_points = """\
[paste.app_factory]
main = velo:main
"""
)