-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (53 loc) · 1.41 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
58
59
60
61
62
63
[tool.poetry]
name = "depythel"
version = "0.1.0"
description = "CLT for Interdependency Visualiser and Dependency Hell scrutiniser"
authors = ["harens <harensdeveloper@gmail.com>"]
license = "GPL-3.0-or-later"
include = ["depythel_clt/py.typed"]
readme = "README.rst"
packages = [{include = "depythel_clt"}]
[tool.poetry.dependencies]
python = "^3.7"
depythel_api = { sibling = true }
pyvis = "^0.1.9"
networkx = "^2.6.3"
click = "^8.0.3"
rich = "^11.0.0"
beartype = "^0.10.3"
rich-click = "^1.2.1"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
black = "^21.8b0"
isort = "^5.9.3"
pydocstyle = "^6.1.1"
pre-commit = "^2.15.0"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
Sphinx = "^4.2.0"
sphinx-autobuild = "^2021.3.14"
types-toml = "^0.10.1"
pytest-mock = "^3.6.1"
pylint = "^2.12.2"
sphinx-click = "^3.0.2"
pytest-sugar = "^0.9.4"
[tool.poetry.scripts]
depythel = "depythel_clt.main:depythel"
[tool.relaxed-poetry.sub-projects]
depythel_api = "depythel_api"
# See https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/stubs"
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
# TODO: Remove before production
[tool.pylint.messages_control]
disable = ["fixme", "logging-fstring-interpolation"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"