summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/views/pyproject.toml
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2024-02-04 15:29:37 -0700
committerMichael Merickel <michael@merickel.org>2024-02-04 15:29:37 -0700
commitd3c8d93cfb1282f328ecd133df6565a2df92779f (patch)
treed8dc3c489fa007666476ea38155d9bd24d24525c /docs/tutorials/wiki2/src/views/pyproject.toml
parent569f0a53d0bedecceb1365a0159c9fe514f198a9 (diff)
downloadpyramid-d3c8d93cfb1282f328ecd133df6565a2df92779f.tar.gz
pyramid-d3c8d93cfb1282f328ecd133df6565a2df92779f.tar.bz2
pyramid-d3c8d93cfb1282f328ecd133df6565a2df92779f.zip
update the definingviews chapter
Diffstat (limited to 'docs/tutorials/wiki2/src/views/pyproject.toml')
-rw-r--r--docs/tutorials/wiki2/src/views/pyproject.toml60
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",
+]