-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name="forestflow"
version="2024.0.0"
authors = [
{ name="Jonas Chaves-Montero", email="[email protected]" },
{ name="Laura Cabayol-Garcia", email="[email protected]" },
]
maintainers = [
{ name="Jonas Chaves-Montero", email="[email protected]" },
{ name="Laura Cabayol-Garcia", email="[email protected]" },
]
description = "Emulator for Lyman-alpha 3D power spectrum"
readme = "README.md"
keywords = [
"Lyman-alpha", "Cosmology", "Power Spectrum", "Emulator",
]
requires-python = ">= 3.10"
dependencies = [
"pydoe2>=1.3.0",
"emcee>=3.1.2",
"freia>=0.2",
"corner>=2.2.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific :: Cosmology/Astrophysics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
px = [
"hankl>=1.1.0"
]
jupyter = [
"jupyter>=1.0.0",
"jupytext>=1.16.1"
]
[tool.setuptools.packages.find]
include = ["forestflow"]
namespaces = false
[project.urls]
Homepage="https://github.com/igmhub/ForestFlow"
Repository="https://github.com/igmhub/ForestFlow.git"
Issues="https://github.com/igmhub/ForestFlow/issues"