-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
82 lines (75 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name="lace"
version="2024.0.0"
authors = [
{ name="Andreu Font-Ribera", email="afont@ifae.es" },
{ name="Chris Pedersen" },
{ name="Jonas Chaves-Montero", email="jchaves@ifae.es" },
{ name="Laura Cabayol-Garcia", email="lcabayol@pic.es" },
]
maintainers = [
{ name="Andreu Font-Ribera", email="afont@ifae.es" },
{ name="Jonas Chaves-Montero", email="jchaves@ifae.es" },
{ name="Laura Cabayol-Garcia", email="lcabayol@pic.es" },
]
description = "Emulator for Lyman-alpha 1D power spectrum"
readme = "README.md"
keywords = [
"Lyman-alpha", "Cosmology", "Power Spectrum", "Emulator",
]
requires-python = ">= 3.10"
dependencies = [
"numpy",
"pandas",
"scipy",
"h5py",
"scikit-learn",
"matplotlib",
"configobj",
"camb",
"torch",
"scikit-fda",
"jupyterlab",
"jupytext"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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]
test = [
"pytest",
]
gpy = [
"GPy==1.13.1",
]
explicit = [
"numpy==1.24.4",
"pandas==2.1.4",
"scipy==1.11.4",
"h5py==3.10.0",
"scikit-learn==1.3.2",
"matplotlib==3.8.2",
"configobj==5.0.8",
"camb==1.5.4",
"torch==2.1.2",
"scikit-fda==0.9",
"GPy==1.13.1",
"jupyterlab"
]
[tool.setuptools.packages.find]
include = ["lace","lace.*"]
namespaces = false
[project.urls]
Homepage="https://github.com/igmhub/LaCE"
Repository="https://github.com/igmhub/LaCE.git"
Issues="https://github.com/igmhub/LaCE/issues"