remove Pylons references from setup.py

This commit is contained in:
Jan Dittberner 2015-04-20 20:50:07 +02:00
parent c3ead7e729
commit 1e219ee992
1 changed files with 1 additions and 8 deletions

View File

@ -46,7 +46,7 @@ setup(
author_email='jan@dittberner.info',
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
license='AGPL-3.0+',
install_requires=["Pylons>=1.0", 'babel>=0.9.6'],
install_requires=["Flask>=0.10.1", 'babel>=0.9.6'],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
@ -57,11 +57,4 @@ setup(
('templates/**.mako', 'mako', None),
('public/**', 'ignore', None)]},
zip_safe=False,
entry_points="""
[paste.app_factory]
main = debianmemberportfolio.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)