Skip to content

Commit

Permalink
Carry forward previous setup.py changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevepiercy committed Oct 7, 2018
1 parent 84aa10a commit 3bb6f33
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
9 changes: 8 additions & 1 deletion docs/quick_tutorial/json/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'waitress',
]

setup(name='tutorial',
install_requires=requires,
extras_require={
'test': [
'pytest',
'webtest',
],
},
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
)
)
9 changes: 8 additions & 1 deletion docs/quick_tutorial/more_view_classes/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'waitress',
]

setup(name='tutorial',
install_requires=requires,
extras_require={
'test': [
'pytest',
'webtest',
],
},
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
)
)
9 changes: 8 additions & 1 deletion docs/quick_tutorial/static_assets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'waitress',
]

setup(name='tutorial',
install_requires=requires,
extras_require={
'test': [
'pytest',
'webtest',
],
},
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
)
)

0 comments on commit 3bb6f33

Please sign in to comment.