-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
46 lines (37 loc) · 1.24 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
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "derivative"
version = "0.6.3"
description = "Numerical differentiation in python."
repository = "https://github.com/andgoldschmidt/derivative"
documentation = "https://derivative.readthedocs.io/"
keywords = ["differentiation", "derivative", "gradient", "prime"]
authors = [
"Andy Goldschmidt <[email protected]>",
"Markus Quade <[email protected]>",
"Jacob Stevens-Haas <[email protected]>"
]
license = "MIT"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
numpy = ">=1.18.3"
scipy = "^1.4.1"
scikit-learn = "^1"
importlib-metadata = ">=7.1.0"
# docs
sphinx = {version = "7.2.6", optional = true}
nbsphinx = {version = "^0.9.5", optional = true}
matplotlib = {version = "^3.2.1", optional = true}
ipython = {version = "^8.0.0, !=8.7.0, !=8.18.1", optional = true}
ipykernel = {version = "^6.0.0", optional = true}
# dev
asv = {version = "^0.6", optional = true}
pytest = {version = ">=7", optional = true}
[tool.poetry.extras]
docs = ["sphinx", "nbsphinx", "matplotlib", "ipython", "ipykernel"]
dev = ["asv", "pytest"]
[tool.poetry.plugins.'derivative.hyperparam_opt']
"kalman.default" = "derivative.utils:_default_kalman"