-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (51 loc) · 1.3 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
[tool.poetry]
name = "fitk"
version = "0.11.1"
description = "The Fisher Information ToolKit"
authors = ["JCGoran <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://jcgoran.github.io/fitk/"
repository = "https://github.com/JCGoran/fitk/"
[tool.poetry.dependencies]
python = ">=3.7,<4"
numpy = [
{version = "1.21.6", python = "==3.7"},
{version = ">1.22", python = ">=3.8"}
]
scipy = [
{version = "1.7.3", python = "==3.7"},
{version = ">1.7.3", python = ">=3.8"}
]
matplotlib = [
{version = "3.5.3", python = "==3.7"},
{version = ">3.5.3", python = ">=3.8"}
]
sympy = {version = "*"}
coffe = { version = "*", optional = true }
classy = { version = "*", optional = true }
camb = { version = "*", optional = true }
[tool.poetry.extras]
coffe = ["coffe"]
classy = ["classy"]
camb = ["camb"]
interfaces = ["coffe", "classy", "camb"]
[tool.poetry.dev-dependencies]
black = "*"
pytest = "*"
pylint = "*"
mypy = "*"
jupyterlab = "*"
cosmicfish = {git = "https://github.com/jcgoran/cosmicfish", rev = "feature/pip-install"}
vermin = "*"
pytest-cov = "*"
coverage = "*"
pdoc = "*"
pytest-mpl = "*"
packaging = "*"
importlib-metadata = "*"
python-lsp-server = "*"
pydocstyle = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"