-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.4 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "snake-guice"
version = "1.0.0a1"
description = "A simple, lightweight Python dependency injection framework"
authors = ["David Stanek <[email protected]>"]
license = "MIT"
readme = "README.rst"
packages = [
{ include = "snakeguice" },
]
repository = "https://github.com/dstanek/snake-guice"
documentation = "https://snake-guice.readthedocs.io/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[tool.poetry.dependencies]
python = "^3.8"
Sphinx = {version = "^5.3.0", optional = true, extras = ["docs"]}
reno = {version = "^3.5.0", optional = true, extras = ["docs"]}
myst-parser = {version = "^0.18.1", optional = true, extras = ["docs"]}
[tool.poetry.dev-dependencies]
pytest = "7.1.3"
flake8 = "5.0.4"
black = "22.10.0"
isort = "5.10.1"
Routes = "^2.5.1"
WebOb = "^1.8.7"
mypy = "^0.982"
[tool.poetry.extras]
docs = ["Sphinx", "myst-parser", "reno"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
verbose = true
line-length = 88
[tool.isort]
profile="black"
skip_gitignore = true
[tool.mypy]
ignore_missing_imports = true