-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
46 lines (41 loc) · 1.05 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
[tool.poetry]
name = "torchtime"
version = "0.6.1"
description = "Benchmark time series data sets for PyTorch"
authors = ["Philip Darke <hello@philipdarke.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://philipdarke.com/torchtime"
repository = "https://github.com/philipdarke/torchtime"
documentation = "https://philipdarke.com/torchtime"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
numpy = "^1.21"
requests = "^2.27.1"
scikit-learn = "^1.1"
sktime = ">=0.17,<0.19"
torch = ">=1.12,<2.1"
tqdm = "^4.64.0"
[tool.poetry.group.dev.dependencies]
black = "23.3.0"
flake8 = "6.0.0"
genbadge = {extras = ["all"], version = "1.1.0"}
isort = "5.12.0"
myst-parser = "1.0.0"
pre-commit = "3.3.2"
Pygments = "2.15.1"
pytest = "7.3.1"
pytest-cov = "4.1.0"
Sphinx = "6.2.1"
sphinx-autodoc-typehints = "1.23.0"
sphinx-rtd-theme = "1.2.1"
sphinx-copybutton = "0.5.2"
[tool.black]
include = '\.pyi?$'
target-version = ['py310']
[tool.isort]
profile = "black"
py_version = 310
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"