diff options
| author | Chris McDonough <chrism@plope.com> | 2012-11-20 22:00:28 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-11-20 22:00:28 -0500 |
| commit | 69883fbb866c4f0970f2cd46a83fe57548dfe059 (patch) | |
| tree | 5ee4699dc01c43880b461dd2ba24278c2c74562b /docs/tutorials/wiki/src/views/setup.py | |
| parent | 68886507c9e94fefa9e6c28b2b49c4da5b3ef77e (diff) | |
| parent | 8fcc3212d7bbcf3720824c940b2337f9b4c958fd (diff) | |
| download | pyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.tar.gz pyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.tar.bz2 pyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/tutorials/wiki/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/views/setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py index a6be89b2e..ac8cdf2d5 100644 --- a/docs/tutorials/wiki/src/views/setup.py +++ b/docs/tutorials/wiki/src/views/setup.py @@ -21,9 +21,8 @@ setup(name='tutorial', description='tutorial', long_description=README + '\n\n' + CHANGES, classifiers=[ - "Intended Audience :: Developers", - "Framework :: Pylons", "Programming Language :: Python", + "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ], @@ -34,11 +33,12 @@ setup(name='tutorial', packages=find_packages(), include_package_data=True, zip_safe=False, - install_requires=requires, - tests_require=requires, + install_requires = requires, + tests_require= requires, test_suite="tutorial", entry_points = """\ [paste.app_factory] main = tutorial:main """, ) + |
