diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-23 05:14:42 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-23 05:14:42 -0800 |
| commit | d5f734ccb61f3df81575cdbbe4fc9fbf523b8746 (patch) | |
| tree | 16a9dfac007428ac44ad850e321a4efc479f10af /docs/tutorials/wiki/src/tests/setup.py | |
| parent | 90b803a669241fe39d7201633ba9dd539f401f12 (diff) | |
| download | pyramid-d5f734ccb61f3df81575cdbbe4fc9fbf523b8746.tar.gz pyramid-d5f734ccb61f3df81575cdbbe4fc9fbf523b8746.tar.bz2 pyramid-d5f734ccb61f3df81575cdbbe4fc9fbf523b8746.zip | |
wiki/src/tests updates, use correct lexers
Diffstat (limited to 'docs/tutorials/wiki/src/tests/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/tests/setup.py | 60 |
1 files changed, 31 insertions, 29 deletions
diff --git a/docs/tutorials/wiki/src/tests/setup.py b/docs/tutorials/wiki/src/tests/setup.py index 68e3c0abd..4a9f041e3 100644 --- a/docs/tutorials/wiki/src/tests/setup.py +++ b/docs/tutorials/wiki/src/tests/setup.py @@ -19,37 +19,39 @@ requires = [ 'waitress', 'docutils', 'bcrypt', - ] +] tests_require = [ 'WebTest >= 1.3.1', # py3 compat - 'pytest', # includes virtualenv + 'pytest', '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", - ], - author='', - author_email='', - url='', - keywords='web pylons pyramid', - packages=find_packages(), - include_package_data=True, - zip_safe=False, - extras_require={ - 'testing': tests_require, - }, - install_requires=requires, - entry_points="""\ - [paste.app_factory] - main = tutorial:main - """, - ) +setup( + name='tutorial', + version='0.0', + description='myproj', + long_description=README + '\n\n' + CHANGES, + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Pyramid', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', + ], + author='', + author_email='', + url='', + keywords='web pyramid pylons', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + extras_require={ + 'testing': tests_require, + }, + install_requires=requires, + entry_points={ + 'paste.app_factory': [ + 'main = tutorial:main', + ], + }, +) |
