-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 944 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "pyramid_autowire"
version = "1.0.3-alpha.0"
description = "Dependency injection for pyramid views"
readme = "README.rst"
license = "MIT"
authors = ["Nick Beeuwsaert"]
homepage = "https://github.com/NickBeeuwsaert/pyramid_autowire"
classifiers = [
"Framework :: Pyramid",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: Pyramid"
]
[tool.poetry.dependencies]
python = "^3.8"
# The user is going to have these installed since they are using pyramid
"zope.interface" = "*"
pyramid = ">=1.5"
# Not sure exactly what version of typing_extensions
# we need, I know Annotated has been in for a while
# but not documented
typing-extensions = "^3.7.4"
twine = "^3.4.1"
build = "^0.3.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.11.1"
tox = "^3.23.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"