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