##// END OF EJS Templates
updated setup dependencies
marcink -
r170:f9e89209 default
parent child Browse files
Show More
@@ -1,38 +1,40 b''
1 try:
1 try:
2 from setuptools import setup, find_packages
2 from setuptools import setup, find_packages
3 except ImportError:
3 except ImportError:
4 from ez_setup import use_setuptools
4 from ez_setup import use_setuptools
5 use_setuptools()
5 use_setuptools()
6 from setuptools import setup, find_packages
6 from setuptools import setup, find_packages
7
7
8 setup(
8 setup(
9 name='pylons_app',
9 name='pylons_app',
10 version='1.0',
10 version='1.0',
11 description='',
11 description='',
12 author='marcin kuzminski',
12 author='marcin kuzminski',
13 author_email='marcin@python-blog.com',
13 author_email='marcin@python-blog.com',
14 url='',
14 url='',
15 install_requires=[
15 install_requires=[
16 "Pylons>=1.0.0",
16 "Pylons>=1.0.0",
17 "SQLAlchemy>=0.6",
17 "SQLAlchemy>=0.6",
18 "Mako>=0.3.2",
18 "Mako>=0.3.2",
19 "vcs>=0.1.1",
20 "pygments>=1.3.0"
19 ],
21 ],
20 setup_requires=["PasteScript>=1.6.3"],
22 setup_requires=["PasteScript>=1.6.3"],
21 packages=find_packages(exclude=['ez_setup']),
23 packages=find_packages(exclude=['ez_setup']),
22 include_package_data=True,
24 include_package_data=True,
23 test_suite='nose.collector',
25 test_suite='nose.collector',
24 package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']},
26 package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']},
25 message_extractors={'pylons_app': [
27 message_extractors={'pylons_app': [
26 ('**.py', 'python', None),
28 ('**.py', 'python', None),
27 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
29 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
28 ('public/**', 'ignore', None)]},
30 ('public/**', 'ignore', None)]},
29 zip_safe=False,
31 zip_safe=False,
30 paster_plugins=['PasteScript', 'Pylons'],
32 paster_plugins=['PasteScript', 'Pylons'],
31 entry_points="""
33 entry_points="""
32 [paste.app_factory]
34 [paste.app_factory]
33 main = pylons_app.config.middleware:make_app
35 main = pylons_app.config.middleware:make_app
34
36
35 [paste.app_install]
37 [paste.app_install]
36 main = pylons.util:PylonsInstaller
38 main = pylons.util:PylonsInstaller
37 """,
39 """,
38 )
40 )
General Comments 0
You need to be logged in to leave comments. Login now