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/views/pyproject.toml | |
| 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/views/pyproject.toml')
| -rw-r--r-- | docs/tutorials/wiki2/src/views/pyproject.toml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/docs/tutorials/wiki2/src/views/pyproject.toml b/docs/tutorials/wiki2/src/views/pyproject.toml new file mode 100644 index 000000000..2b054c578 --- /dev/null +++ b/docs/tutorials/wiki2/src/views/pyproject.toml @@ -0,0 +1,60 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +version = "0.0" +name = "tutorial" +authors = [] +description = "myproj" +readme = "README.md" +keywords = ["web", "pyramid", "pylons"] +classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Framework :: Pyramid", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", +] +requires-python = ">=3.8" +dependencies = [ + "alembic", + "bcrypt", + "docutils", + "plaster_pastedeploy", + "pyramid", + "pyramid_debugtoolbar", + "pyramid_jinja2", + "pyramid_retry", + "pyramid_tm", + "SQLAlchemy", + "transaction", + "waitress", + "zope.sqlalchemy", +] + +[project.optional-dependencies] +testing = [ + "WebTest", + "pytest", + "pytest-cov", +] + +[project.scripts] +initialize_tutorial_db = "tutorial.scripts.initialize_db:main" + +[project.entry-points."paste.app_factory"] +main = "tutorial:main" + +[tool.setuptools.packages.find] +exclude = ["tests"] + +[tool.coverage.run] +source = "tutorial" + +[tool.pytest.ini_options] +addopts = "--strict-markers" +testpaths = [ + "tutorial", + "tests", +] |
