generated from glass-dev/glass.ext.template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (56 loc) · 1.38 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "glass.ext.cli"
description = "GLASS command line interface"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{ name = "Nicolas Tessore", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"importlib_metadata>=3.6; python_version<'3.10'",
"click",
"glass>=2023.6",
"glass.ext.config",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"sphinx",
"sphinxcontrib-katex",
"numpydoc",
"furo",
]
[project.urls]
Homepage = "https://github.com/glass-dev/glass.ext.cli"
Documentation = "https://glass.readthedocs.io/projects/cli/"
Issues = "https://github.com/glass-dev/glass.ext.cli/issues"
[project.scripts]
glass = "glass.ext.cli.__main__:cli"
[project.entry-points."glass.cli"]
compute = "glass.ext.cli.compute:cli"
config = "glass.ext.cli.config:cli"
plot = "glass.ext.cli.plot:cli"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
include = [
"glass/ext/cli/*.py",
"glass/ext/cli/default.ini",
"glass/ext/cli/matplotlibrc",
]
[tool.hatch.build.targets.sdist]
strict-naming = false
[tool.hatch.build.targets.wheel]
strict-naming = false