-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
75 lines (67 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "torchcast"
description = "Forecasting in PyTorch"
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
license = { file = "LICENSE" }
authors = [
{ name = "Jacob Dink", email = "[email protected]" }
]
dependencies = [
"torch>=1.12",
"numpy>=1.4",
"scipy>=1.10",
"tqdm>=4.59",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/strongio/torchcast"
"Bug Tracker" = "https://github.com/strongio/torchcast/issues"
Documentation = "https://docs.strong.io/torchcast/"
[project.optional-dependencies]
dev = [
"isort",
"black",
]
tests = [
"parameterized>=0.7",
"filterpy>=1.4",
"pandas>=1.0"
]
docs = [
"jupytext>=1.11",
"plotnine>=0.8",
"nbsphinx>=0.8.2",
"ipykernel>=5.3.4",
"ipywidgets>=7.6.3",
"pandoc>=1.0.2",
"matplotlib",
"strong-sphinx-theme @ git+ssh://[email protected]/strongio/strong-sphinx-theme.git"
]
[tool.setuptools.dynamic]
version = { attr = "torchcast.__version__" }
[tool.cibuildwheel]
build-frontend = "build"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.semantic_release]
version_variables = ["torchcast/__init__.py:__version__"]
commit_author = "Strong Analytics <[email protected]>"
commit_message = "Bump to {version} [skip ci]"
[tool.semantic_release.publish]
upload_to_vcs_release = true