-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.85 KB
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
76
77
78
[project]
name = "torchcast"
description = "Forecasting in PyTorch"
readme = "README.md"
requires-python = ">= 3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
license = { file = "LICENSE" }
authors = [
{ name = "Jacob Dink", email = "jacob.dink@strong.io" }
]
dependencies = [
"torch>=1.12",
"numpy>=1.4",
"scipy>=1.10",
"tqdm>=4.59",
"platformdirs>=4.3",
"pandas<3"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/onesixsolutions/torchcast"
"Bug Tracker" = "https://github.com/onesixsolutions/torchcast/issues"
Documentation = "https://docs.strong.io/torchcast/"
[project.optional-dependencies]
dev = [
"isort",
"black",
]
tests = [
"pytest>=7.0",
"filterpy>=1.4",
]
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://git@github.com/onesixsolutions/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 <access@strong.io>"
commit_message = "Bump to {version} [skip ci]"
[tool.semantic_release.publish]
upload_to_vcs_release = true