-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 867 Bytes
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
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.coverage.run]
omit = [
"tests/*"
]
[tool.poetry]
name = "tedi"
version = "3.0.1"
description = "A python library for Gaussian or Student-t processes regression"
authors = ["joao.camacho <joao.camacho@astro.up.pt>"]
repository = "https://github.com/jdavidrcamacho/tedi/"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^2.0.1"
scipy = "^1.14.0"
emcee = "^3.1.6"
matplotlib = "^3.9.1"
loguniform = "^2.0.1"
corner = "^2.2.2"
ipython = "^8.26.0"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pydocstyle = "*"
isort = "*"
sphinx = "^8.2.3"
sphinx-rtd-theme = "^3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"