-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.04 KB
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
[project]
name = "cod8a"
version = "0.3.1"
description = "cod8a is a code documentation and visualization tool for Python and .NET projects"
authors = [
{ name = "Marietta Akumbom",email = "akumbom5ma@gmail.com"}
]
maintainers = [
{ name = "Marietta Akumbom" }
]
keywords = [ "visualization", "uml", "docs", "flowchart", "class", "sequence", "diagram" ]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"click (>=8.3.3,<9.0.0)",
"pydantic (>=2.13.3,<3.0.0)"
]
[project.urls]
Repository = "https://github.com/marietta-a/cod8a"
[tool.poetry]
packages = [{include = "cod8a", from = "src"}]
include = [
{ path = "src/cod8a/dotnet/CodeAnalyzer/bin/Release/net10.0/*.dll", format = ["wheel"] },
{ path = "src/cod8a/dotnet/CodeAnalyzer/bin/Release/net10.0/*.json", format = ["wheel"] }
]
[project.scripts]
cod8a = "cod8a.cli:main"
cde8a = "cod8a.cli:doc_main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=9.0.3,<10.0.0)"
]