-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
57 lines (47 loc) · 1.4 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
from setuptools import setup, find_packages
setup(
name='spline',
version='0.1',
description='',
author='',
author_email='',
#url='',
install_requires=[
"Pylons>=1.0.1",
"SQLAlchemy>=0.6",
"Mako>=0.3.4",
"nose>=0.11",
"WTForms>=1.0",
'markdown',
'lxml',
'python-openid',
'webhelpers>=1.2',
# 'Babel>=0.9.5', # needed for translation work only, can do without
],
setup_requires=["PasteScript"],
packages=find_packages(),
include_package_data=True,
package_data={'spline': ['i18n/*/LC_MESSAGES/*.mo']},
zip_safe=False,
test_suite='nose.collector',
message_extractors = {'spline': [
('**.py', 'spline-python', None),
('**/templates/**.mako', 'spline-mako', {'input_encoding': 'utf-8'}),
('**/public/**', 'ignore', None)]},
paster_plugins=['PasteScript', 'Pylons'],
entry_points="""
[paste.app_factory]
main = spline.config.middleware:make_app
[paste.app_install]
main = spline.installer:Installer
[babel.extractors]
spline-python = spline.babelplugin:extract_python
spline-mako = spline.babelplugin:extract_mako
[nose.plugins]
pylons = pylons.test:PylonsPlugin
[spline.plugins]
users = splinext.users:UsersPlugin
forum = splinext.forum:ForumPlugin
frontpage = splinext.frontpage:FrontPagePlugin
""",
)