Files
@ 9db7782727b3
Branch filter:
Location: kallithea/setup.py - annotation
9db7782727b3
1.1 KiB
text/x-python
Static files for production fixed
Error handler for debug on, added
admin auth function authenticates only admins
changed creation of db
Error handler for debug on, added
admin auth function authenticates only admins
changed creation of db
564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'pylons_app',
version = '1.0',
description = '',
author = 'marcin kuzminski',
author_email = 'marcin@python-blog.com',
url = '',
install_requires = [
"Pylons>=0.9.7,<=0.9.7.99",
"SQLAlchemy>=0.5,<=0.5.99",
"Mako>=0.2.2,<=0.2.99",
],
setup_requires = ["PasteScript>=1.6.3"],
packages = find_packages(exclude = ['ez_setup']),
include_package_data = True,
test_suite = 'nose.collector',
package_data = {'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']},
message_extractors = {'pylons_app': [
('**.py', 'python', None),
('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
('public/**', 'ignore', None)]},
zip_safe = False,
paster_plugins = ['PasteScript', 'Pylons'],
entry_points = """
[paste.app_factory]
main = pylons_app.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)
|