generated from glass-dev/glass.ext.template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (53 loc) · 1.62 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "glass.ext.config"
description = "GLASS configuration file support"
readme = "README.md"
requires-python = ">=3.6"
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'",
"glass>=2023.6.dev0",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"sphinx",
"sphinxcontrib-katex",
"numpydoc",
"furo",
]
[project.urls]
Homepage = "https://github.com/glass-dev/glass.ext.config"
Documentation = "https://glass.readthedocs.io/projects/config/"
Issues = "https://github.com/glass-dev/glass.ext.config/issues"
[project.entry-points."glass.shells"]
tophat = "glass.ext.config.shells:tophat_shells_from_config"
linear = "glass.ext.config.shells:linear_shells_from_config"
cubic = "glass.ext.config.shells:cubic_shells_from_config"
[project.entry-points."glass.shells.weight"]
[project.entry-points."glass.shells.grid"]
distance = "glass.ext.config.shells:distance_grid_from_config"
[project.entry-points."glass.fields.cls"]
load = "glass.ext.config.fields:load_cls_from_config"
[project.entry-points."glass.galaxies.dndz"]
gaussian = "glass.ext.config.galaxies:gaussian_dndz_from_config"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
strict-naming = false
[tool.hatch.build.targets.wheel]
strict-naming = false