diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-23 04:27:48 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-23 04:27:48 -0800 |
| commit | e03ea9265b809f783094799e67ae9e00e09085b1 (patch) | |
| tree | 1e799858ac8afcde784fd671eb5f806f1b466ec6 /docs/tutorials/wiki/src/views/setup.py | |
| parent | 9d95c55f951e31fd42c10d40136cd72fc95f2159 (diff) | |
| download | pyramid-e03ea9265b809f783094799e67ae9e00e09085b1.tar.gz pyramid-e03ea9265b809f783094799e67ae9e00e09085b1.tar.bz2 pyramid-e03ea9265b809f783094799e67ae9e00e09085b1.zip | |
wiki/src/views updates
Diffstat (limited to 'docs/tutorials/wiki/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/views/setup.py | 60 |
1 files changed, 31 insertions, 29 deletions
diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py index beeed75c9..598ad8146 100644 --- a/docs/tutorials/wiki/src/views/setup.py +++ b/docs/tutorials/wiki/src/views/setup.py @@ -18,37 +18,39 @@ requires = [ 'ZODB3', 'waitress', 'docutils', - ] +] 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', + ], + }, +) |
