-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.14 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
[tool.poetry]
name = "project_manager"
version = "0.0.0.post63.dev0+eed4ce6"
description = ""
authors = ["JD <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
gy = "*"
pytest = {version = "^6.2.4", optional = true}
pytest-cov = {version = "^2.12.1", optional = true}
autoflake = {version = "^1.4", optional = true}
flake8 = {version = "^3.9.2", optional = true}
mypy = {version = "^0.910", optional = true}
isort = {version = "^5.9.1", optional = true}
pre-commit = {version = "^2.13.0", optional = true}
black = {version = "^21.6-beta.0", optional = true}
poetry-dynamic-versioning = {version = "^0.17.1", optional = true}
#poetry-core = "^1.0.8"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
dev_tools = ["pytest","pytest-cov","autoflake","flake8","mypy","isort","pre-commit","black","poetry-dynamic-versioning"]
#[tool.poetry-dynamic-versioning]
#enable = true
#vcs = "git"
#pattern = "commit"
#bump = true
#
#[tool.poetry-dynamic-versioning.substitution]
#enable = true
#vcs = "git"
#pattern = "commit"