-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (47 loc) · 1.2 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "terminalplot"
authors = [
{"name" = "Michael Kressibucher", "email" = "[email protected]"}
]
description = "Plot points in terminal"
readme = "README.rst"
license = {"file" = "LICENCE.txt"}
requires-python = ">3.3"
keywords = ["plot", "terminal", "graph", "console"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering :: Visualization"
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/kressi/terminalplot"
[project.scripts]
plot = "terminalplot.command:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
"black",
"mypy"
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build]
only-packages = true
[tool.hatch.build.hooks.vcs]
version-file = "terminalplot/_version.py"
[tool.black]
line-length = 79
[tool.mypy]
warn_unused_configs = true
# strict = true