comparison setup.py @ 127:20dc7a5eb748

Html changes and cleanups, made folders for html templates, implemented tags and branches pages
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 03 May 2010 19:07:54 +0200
parents 564e40829f80
children f9e8920958af
comparison
equal deleted inserted replaced
126:cfddee9d3693 127:20dc7a5eb748
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>=0.9.7,<=0.9.7.99", 16 "Pylons>=1.0.0",
17 "SQLAlchemy>=0.5,<=0.5.99", 17 "SQLAlchemy>=0.6",
18 "Mako>=0.2.2,<=0.2.99", 18 "Mako>=0.3.2",
19 ], 19 ],
20 setup_requires = ["PasteScript>=1.6.3"], 20 setup_requires=["PasteScript>=1.6.3"],
21 packages = find_packages(exclude = ['ez_setup']), 21 packages=find_packages(exclude=['ez_setup']),
22 include_package_data = True, 22 include_package_data=True,
23 test_suite = 'nose.collector', 23 test_suite='nose.collector',
24 package_data = {'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']}, 24 package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']},
25 message_extractors = {'pylons_app': [ 25 message_extractors={'pylons_app': [
26 ('**.py', 'python', None), 26 ('**.py', 'python', None),
27 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}), 27 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
28 ('public/**', 'ignore', None)]}, 28 ('public/**', 'ignore', None)]},
29 zip_safe = False, 29 zip_safe=False,
30 paster_plugins = ['PasteScript', 'Pylons'], 30 paster_plugins=['PasteScript', 'Pylons'],
31 entry_points = """ 31 entry_points="""
32 [paste.app_factory] 32 [paste.app_factory]
33 main = pylons_app.config.middleware:make_app 33 main = pylons_app.config.middleware:make_app
34 34
35 [paste.app_install] 35 [paste.app_install]
36 main = pylons.util:PylonsInstaller 36 main = pylons.util:PylonsInstaller