-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (37 loc) · 930 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "glass.ext.camb"
description = "GLASS extension for CAMB"
readme = "README.md"
requires-python = ">=3.6"
license = { file = "LICENSE" }
maintainers = [
{ name = "Nicolas Tessore", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"camb>=1.3.5",
"glass>=2023.7",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/glass-dev/glass.ext.camb"
Issues = "https://github.com/glass-dev/glass.ext.camb/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
strict-naming = false
[tool.hatch.build.targets.wheel]
strict-naming = false
packages = ["glass"]