-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (65 loc) · 1.48 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
import logging
import multiprocessing
import sys
py_version = sys.version_info[:2]
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
testpkgs = [
'WebTest >= 1.2.3',
'nose',
'coverage',
'gearbox'
]
install_requires = [
"TurboGears2 >= 2.3.10",
"Beaker >= 1.8.0",
"Kajiki >= 0.6.1",
"zope.sqlalchemy >= 0.4",
"sqlalchemy",
"alembic",
"repoze.who",
"tw2.forms",
"tgext.admin >= 0.6.1",
"WebHelpers2",
"Babel",
"filedepot",
"tgscheduler",
"blockpcaapi",
"cryptography",
]
setup(
name='blockpca',
version='0.1',
description='',
author='',
author_email='',
url='',
packages=find_packages(exclude=['ez_setup']),
install_requires=install_requires,
include_package_data=True,
test_suite='nose.collector',
tests_require=testpkgs,
package_data={'blockpca': [
'i18n/*/LC_MESSAGES/*.mo',
'templates/*/*',
'public/*/*'
]},
message_extractors={'blockpca': [
('**.py', 'python', None),
('templates/**.xhtml', 'kajiki', {'strip_text': False}),
('public/**', 'ignore', None)
]},
entry_points={
'paste.app_factory': [
'main = blockpca.config.middleware:make_app'
],
'gearbox.plugins': [
'turbogears-devtools = tg.devtools'
]
},
zip_safe=False
)