forked from jan/debianmemberportfolio
Fix unused arguments, remove Pylons websetup
This commit is contained in:
parent
e79d16c42f
commit
23f3c78141
5 changed files with 20 additions and 53 deletions
3
setup.py
3
setup.py
|
|
@ -22,6 +22,7 @@
|
|||
try:
|
||||
from setuptools import setup, find_packages
|
||||
except ImportError:
|
||||
# noinspection PyUnresolvedReferences
|
||||
from ez_setup import use_setuptools
|
||||
use_setuptools()
|
||||
from setuptools import setup, find_packages
|
||||
|
|
@ -46,7 +47,7 @@ setup(
|
|||
author_email='jan@dittberner.info',
|
||||
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
|
||||
license='AGPL-3.0+',
|
||||
install_requires=["Flask>=0.10.1", 'Babel>=1.3', 'Flask-Babel>=0.9'],
|
||||
install_requires=["Flask>=0.10.1", 'Babel>=1.3', 'Flask-Babel>=0.9', 'wtforms'],
|
||||
packages=find_packages(exclude=['ez_setup']),
|
||||
include_package_data=True,
|
||||
test_suite='nose.collector',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue