summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/src/tests/pyproject.toml
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2024-02-07 20:52:05 -0700
committerGitHub <noreply@github.com>2024-02-07 20:52:05 -0700
commit53eb7e7cc6b7bfdedb4df4821af66619bebf909c (patch)
treec0244a2971d7fead848359f3d83fe158f8b509ad /docs/tutorials/wiki/src/tests/pyproject.toml
parent151ebdc003a3a372017fdf73c14fbebcc550535d (diff)
parentfea81c0cf25402c7088b002be7a1672d29841345 (diff)
downloadpyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.tar.gz
pyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.tar.bz2
pyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.zip
Merge pull request #3751 from Pylons/tseaver-refresh-zodb-tutorial
docs: refresh ZODB wiki tutorial
Diffstat (limited to 'docs/tutorials/wiki/src/tests/pyproject.toml')
-rw-r--r--docs/tutorials/wiki/src/tests/pyproject.toml58
1 files changed, 58 insertions, 0 deletions
diff --git a/docs/tutorials/wiki/src/tests/pyproject.toml b/docs/tutorials/wiki/src/tests/pyproject.toml
new file mode 100644
index 000000000..5546f8794
--- /dev/null
+++ b/docs/tutorials/wiki/src/tests/pyproject.toml
@@ -0,0 +1,58 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
+[project]
+version = "0.0"
+name = "tutorial"
+authors = []
+description = "tutorial"
+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 = [
+ "bcrypt",
+ "docutils",
+ "plaster_pastedeploy",
+ "pyramid",
+ "pyramid_chameleon",
+ "pyramid_debugtoolbar",
+ "waitress",
+ "pyramid_retry",
+ "pyramid_tm",
+ "pyramid_zodbconn",
+ "transaction",
+ "ZODB",
+]
+
+[project.optional-dependencies]
+testing = [
+ "WebTest",
+ "pytest",
+ "pytest-cov",
+]
+
+[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",
+]