-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 740 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 740 Bytes
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
[tool.poetry]
name = "dev_demo"
version = "0.1.0"
description = "Modern Python Dev Environment Demo"
authors = ["Brent Stone"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tox = "^3.24.5"
flake8 = "^4.0.1"
pre-commit = "^2.16.0"
mypy = "^0.931"
Sphinx = "^4.4.0"
black = "^21.12b0"
tox-poetry = "^0.4.1"
tox-pyenv = "^1.1.0"
pytest-cov = "^3.0.0"
setup-cfg-fmt = "^1.20.0"
reorder-python-imports = "^2.6.0"
pre-commit-hooks = "^4.1.0"
sphinx-rtd-theme = "^1.0.0"
sphinx-autodoc-typehints = "^1.15.2"
bandit = "^1.7.1"
safety = "^1.10.3"
interrogate = "^1.5.0"
pydantic = "^1.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"