-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.12 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
[tool.poetry]
name = "dotnet-deptree"
version = "0.1.4"
description = "Generate dependency tree visualizations for .NET projects"
authors = ["J.I. Cruz <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/jicruz96/dotnet-deptree"
keywords = [
".NET",
"graphviz",
"dependencies",
"visualization",
"dotnet",
"deptree",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: C#",
"Topic :: Documentation",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Documentation",
]
[tool.poetry.dependencies]
python = "^3.11"
xmltodict = "^0.13.0"
graphviz = "^0.20.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
black = "^24.2.0"
isort = "^5.13.2"
[tool.poetry.scripts]
dotnet-deptree = "dotnet_deptree.cli:main"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"