diff options
| author | Michael Merickel <github@m.merickel.org> | 2024-02-07 21:02:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-07 21:02:40 -0700 |
| commit | 03e2e439f263aca7d4efa8173c0bbc4aacb8a3c2 (patch) | |
| tree | a052858496fce4e03b16098cc11e9b8a0aba1617 /docs/tutorials/wiki2/src/basiclayout/setup.py | |
| parent | 53eb7e7cc6b7bfdedb4df4821af66619bebf909c (diff) | |
| parent | 222386e96a1711b6215f64ea809a9f4a7a8c2202 (diff) | |
| download | pyramid-03e2e439f263aca7d4efa8173c0bbc4aacb8a3c2.tar.gz pyramid-03e2e439f263aca7d4efa8173c0bbc4aacb8a3c2.tar.bz2 pyramid-03e2e439f263aca7d4efa8173c0bbc4aacb8a3c2.zip | |
Merge pull request #3747 from Pylons/wiki2-sqla-2.0
upgrade the wiki2 tutorial with the new cookiecutter updates
Diffstat (limited to 'docs/tutorials/wiki2/src/basiclayout/setup.py')
| -rw-r--r-- | docs/tutorials/wiki2/src/basiclayout/setup.py | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/docs/tutorials/wiki2/src/basiclayout/setup.py b/docs/tutorials/wiki2/src/basiclayout/setup.py deleted file mode 100644 index 5e7a0111d..000000000 --- a/docs/tutorials/wiki2/src/basiclayout/setup.py +++ /dev/null @@ -1,61 +0,0 @@ -import os - -from setuptools import setup, find_packages - -here = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(here, 'README.txt')) as f: - README = f.read() -with open(os.path.join(here, 'CHANGES.txt')) as f: - CHANGES = f.read() - -requires = [ - 'plaster_pastedeploy', - 'pyramid', - 'pyramid_jinja2', - 'pyramid_debugtoolbar', - 'waitress', - 'alembic', - 'pyramid_retry', - 'pyramid_tm', - 'SQLAlchemy', - 'transaction', - 'zope.sqlalchemy', -] - -tests_require = [ - 'WebTest', - 'pytest', - 'pytest-cov', -] - -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(exclude=['tests']), - include_package_data=True, - zip_safe=False, - extras_require={ - 'testing': tests_require, - }, - install_requires=requires, - entry_points={ - 'paste.app_factory': [ - 'main = tutorial:main', - ], - 'console_scripts': [ - 'initialize_tutorial_db=tutorial.scripts.initialize_db:main', - ], - }, -) |
