-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
111 lines (87 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "Termage"
authors = [ { name = "Balázs Cene", email= "[email protected]" } ]
description = """Generate SVGs from any Python code, even in your documentation."""
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = ["pytermgui"]
keywords = [
"terminal",
"documentation",
"mkdocs",
"mkdocs-plugin",
"mkdocs-material",
"PyTermGUI",
"svg-images",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
"Topic :: Terminals",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
]
dynamic = ["readme", "version"]
[project.urls]
homepage = "https://github.com/bczsalba/Termage"
repository = "https://github.com/bczsalba/Termage"
documentation = "https://termage.bczsalba.com"
[project.scripts]
termage = "termage.__main__:main"
[project.entry-points."mkdocs.plugins"]
termage = "termage.mkdocs_plugin:TermagePlugin"
[tool.hatch.version]
path = "termage/__init__.py"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
end-before = "\n<!-- HATCH README END -->"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
text = """
## Latest release
#"""
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "CHANGELOG.md"
end-before = "\n<!-- HATCH README END -->"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
text = "\n\nRead the full changelog [here](https://github.com/bczsalba/Termage/blob/master/CHANGELOG.md).\n\n"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "CHANGELOG.md"
start-after = "\n<!-- HATCH URI DEFINITIONS START -->"
[tool.mypy]
show_error_codes = true
[tool.pylint.messages_control]
disable = [
"fixme",
# If this is a problem, it should occur during runtime
"not-callable"
]
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "x" ,"y", "fd"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"def __fancy_repr__",
"def __repr__",
]
omit = [
"pytermgui/cmd.py"
]
[tool.isort]
profile = "black"