-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 965 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
38
[tool.poetry]
name = "depcheck"
version = "0.3.2"
authors = ["FlixMobility Tech <[email protected]>"]
description = "Python code quality package that helps in defining and restricting how components of your code may interact"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/flix-tech/depcheck"
repository = "https://github.com/flix-tech/depcheck"
documentation = "https://github.com/flix-tech/depcheck"
keywords = ["dependencies", "hexagonal", "architecture", "jdepend", "deptrac"]
[tool.poetry.dependencies]
python = "^3.9"
pydeps = "^1.12.0"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.0"
pyre-check = "^0.9.0"
flake8 = "^6.0.0"
coverage = "^7.2.0"
black = "^23.3.0"
isort = "^5.12.0"
[tool.black]
line-length = 119
[tool.isort]
profile = "black"
line_length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
depcheck = 'depcheck:run_depcheck'