-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "c4-literate-python"
version = "0.9.0"
description = "Generate C4 architecture diagrams from literate Python code"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "C4 Literate Python Contributors"}
]
keywords = [
"c4-model",
"architecture",
"documentation",
"literate-programming",
"structurizr"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Code Generators"
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0"
]
[project.scripts]
c4-literate = "c4_literate.cli:main"
[project.urls]
Homepage = "https://github.com/christosm-dev/c4-literate-python"
Repository = "https://github.com/christosm-dev/c4-literate-python"
Issues = "https://github.com/christosm-dev/c4-literate-python/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
c4_literate = ["c4-annotations-schema.yaml"]