diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-09 13:56:41 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-09 13:57:00 -0700 |
| commit | 0b51f1ff87f3ca53ab8d24caca5a8ea8abe857c1 (patch) | |
| tree | 839dd06be1ad5c732c3dd2d888b2f3fcba4dc3eb /docs/tutorials/wiki2/src/authentication/setup.py | |
| parent | aca7d112ed13b2f70f1f15fb824cee5d633b98e6 (diff) | |
| download | pyramid-0b51f1ff87f3ca53ab8d24caca5a8ea8abe857c1.tar.gz pyramid-0b51f1ff87f3ca53ab8d24caca5a8ea8abe857c1.tar.bz2 pyramid-0b51f1ff87f3ca53ab8d24caca5a8ea8abe857c1.zip | |
- update wiki2/authentication
Diffstat (limited to 'docs/tutorials/wiki2/src/authentication/setup.py')
| -rw-r--r-- | docs/tutorials/wiki2/src/authentication/setup.py | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/docs/tutorials/wiki2/src/authentication/setup.py b/docs/tutorials/wiki2/src/authentication/setup.py index 57538f2d0..8dca906c8 100644 --- a/docs/tutorials/wiki2/src/authentication/setup.py +++ b/docs/tutorials/wiki2/src/authentication/setup.py @@ -21,20 +21,22 @@ requires = [ 'waitress', ] -tests_require = [ - 'WebTest', -] +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='', @@ -42,8 +44,9 @@ setup(name='tutorial', packages=find_packages(), include_package_data=True, zip_safe=False, - test_suite='tutorial', - tests_require=tests_require, + extras_require={ + 'testing': testing_extras, + }, install_requires=requires, entry_points="""\ [paste.app_factory] |
