forked from glass-dev/glass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.11 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "glass"
description = "Generator for Large Scale Structure"
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>=1.20.0",
"healpix>=2022.11.1",
"healpy>=1.15.0",
"cosmology>=2022.10.9",
"gaussiancl>=2022.10.21",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"sphinx",
"furo",
"sphinxcontrib-katex",
"numpydoc",
"matplotlib",
]
[project.urls]
Homepage = "https://github.com/glass-dev/glass"
Documentation = "https://glass.readthedocs.io/"
Issues = "https://github.com/glass-dev/glass/issues"
Changelog = "https://glass.readthedocs.io/en/stable/manual/releases.html"
[tool.hatch]
version.source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "glass/_version.py"