Skip to content

Instantly share code, notes, and snippets.

@mmerickel
Created December 13, 2020 23:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmerickel/33bc8edc633da132a8f92dbcb03ec1da to your computer and use it in GitHub Desktop.
Save mmerickel/33bc8edc633da132a8f92dbcb03ec1da to your computer and use it in GitHub Desktop.
poetry config for pyramid scaffold
[tool.poetry]
name = "pyramid_scaffold"
version = "0.1.0"
description = "Pyramid Scaffold"
authors = []
classifiers = [
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
keywords = ['web', 'pyramid', 'pylons']
readme = "README.txt"
include = [
"CHANGES.txt",
]
[tool.poetry.dependencies]
python = "^3.9"
plaster_pastedeploy = "*"
pyramid = "*"
pyramid_jinja2 = "*"
pyramid_debugtoolbar = "*"
waitress = "*"
[tool.poetry.dev-dependencies]
WebTest = "*"
pytest = "*"
pytest-cov = "*"
[tool.poetry.plugins."paste.app_factory"]
main = "pyramid_scaffold:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment