Skip to content
Snippets Groups Projects
Commit fa1fa6235171 authored by Florent Aide's avatar Florent Aide
Browse files

Adding missing requirements

parent 514c579e598e
No related tags found
No related merge requests found
......@@ -8,14 +8,6 @@
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'cornice',
'waitress',
'sqlachemy',
]
setup(
name='tsp',
......@@ -19,7 +11,7 @@
setup(
name='tsp',
version='0.0',
version='0.1',
description='tsp',
long_description=README + '\n\n' + CHANGES,
classifiers=[
......@@ -35,8 +27,17 @@
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
install_requires=[
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'cornice',
'waitress',
'sqlalchemy',
'requests',
],
tests_require=[
],
test_suite="tsp",
entry_points="""\
[paste.app_factory]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment