-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (31 loc) · 902 Bytes
/
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
[tool.poetry]
name = "pykelihood"
version = "0.4.1"
description = "Intuitive syntax for complex statistical model fitting and parameter sensitivity analysis."
authors = ["Ophélia Miralles <ophelia.miralles@epfl.ch>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/OpheliaMiralles/pykelihood"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha",
]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = "<2"
scipy = "1.12"
pandas = "2.2"
cached-property = {version = ">=1.5.2", python = "<3.8"}
pyyaml = "6.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pre-commit = "^2.10.0"
[tool.poetry.group.docs.dependencies]
sphinx = "4.2.0"
pydata-sphinx-theme = "0.13.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"