forked from fracdiff/fracdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 906 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
[tool.poetry]
name = "fracdiff"
version = "0.7.0"
description = "Super-fast fractional differentiation."
authors = ["Shota Imaki <shota.imaki.0801@gmail.com>"]
license = "BSD-3-Clause"
repository = "https://github.com/fracdiff/fracdiff"
[tool.poetry.dependencies]
python = ">=3.7.12,<3.10"
torch = {version = "^1.9.0", optional = true}
numpy = "^1.21.3"
scikit-learn = "^1.0.1"
scipy = "^1.7.1"
statsmodels = "^0.13.0"
[tool.poetry.extras]
torch = ["torch"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pytest-cov = "^3.0.0"
codecov = "^2.1.11"
black = "^21.4b0"
isort = "^5.8.0"
Sphinx = "^4.2.0"
furo = "^2021.9.22"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.4.0"
mypy = "^0.910"
pylint = "^2.11.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
force_single_line = true