diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-10 00:38:33 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-10 00:38:33 -0700 |
| commit | b8f5796f64100909ebe597a9534eb0ca30ed039b (patch) | |
| tree | 3aed25e507794a614dabcfe78565d87ae87f9fda /docs/tutorials/wiki/src/views/setup.py | |
| parent | 43edd55f205edaad1d7e9d5b5d7ff349b196b0cc (diff) | |
| download | pyramid-b8f5796f64100909ebe597a9534eb0ca30ed039b.tar.gz pyramid-b8f5796f64100909ebe597a9534eb0ca30ed039b.tar.bz2 pyramid-b8f5796f64100909ebe597a9534eb0ca30ed039b.zip | |
- update definingviews and its src files
- fix css in zodb scaffold and wiki tutorial previous steps
Diffstat (limited to 'docs/tutorials/wiki/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/views/setup.py | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py index e2e96379d..b8ae1fa3f 100644 --- a/docs/tutorials/wiki/src/views/setup.py +++ b/docs/tutorials/wiki/src/views/setup.py @@ -20,16 +20,22 @@ requires = [ 'docutils', ] +testing_extras = [ + 'WebTest >= 1.3.1', # py3 compat + 'pytest', # includes virtualenv + 'pytest-cov', + ] + setup(name='tutorial', version='0.0', description='tutorial', long_description=README + '\n\n' + CHANGES, classifiers=[ - "Programming Language :: Python", - "Framework :: Pyramid", - "Topic :: Internet :: WWW/HTTP", - "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", - ], + "Programming Language :: Python", + "Framework :: Pyramid", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], author='', author_email='', url='', @@ -37,9 +43,10 @@ setup(name='tutorial', packages=find_packages(), include_package_data=True, zip_safe=False, + extras_require={ + 'testing': testing_extras, + }, install_requires=requires, - tests_require=requires, - test_suite="tutorial", entry_points="""\ [paste.app_factory] main = tutorial:main |
