summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/src/views/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/wiki/src/views/pyproject.toml')
-rw-r--r--docs/tutorials/wiki/src/views/pyproject.toml57
1 files changed, 57 insertions, 0 deletions
diff --git a/docs/tutorials/wiki/src/views/pyproject.toml b/docs/tutorials/wiki/src/views/pyproject.toml
new file mode 100644
index 000000000..1803f9de7
--- /dev/null
+++ b/docs/tutorials/wiki/src/views/pyproject.toml
@@ -0,0 +1,57 @@
+[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 = [
+ "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",
+]