-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
83 lines (76 loc) · 1.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
#quickstarted Options:
#
# sqlalchemy: True
# auth: None
# mako: True
#
#
#This is just a work-around for a Python2.7 issue causing
#interpreter crash at exit when trying to log an info message.
try:
import logging
import multiprocessing
except:
pass
import sys
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',
'wsgiref',
]
install_requires=[
"TurboGears2 >= 2.2.2",
"Genshi",
"Mako",
"zope.sqlalchemy >= 0.4",
"repoze.tm2 >= 1.0a5",
"sqlalchemy",
"sqlalchemy-migrate",
"tw2.forms",
"tw2.dynforms",
"celery",
]
setup(
name='bs',
version='0.1',
description='',
author='',
author_email='',
#url='',
setup_requires=["PasteScript >= 1.7"],
paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
packages=find_packages(exclude=['ez_setup']),
install_requires=install_requires,
include_package_data=True,
test_suite='nose.collector',
tests_require=testpkgs,
package_data={'bs': ['i18n/*/LC_MESSAGES/*.mo',
'templates/*/*',
'public/*/*',
]},
exclude_package_data={
'bs': [
'public/javascript/jslib'
]},
message_extractors={'bs': [
('**.py', 'python', None),
('templates/**.mako', 'mako', None),
('public/**', 'ignore', None)]},
entry_points="""
[paste.app_factory]
main = bs.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
dependency_links=[
"http://tg.gy/222"
],
zip_safe=False
)