-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
description = "Package for training and forecasting with Google Research's tsmixer"
dynamic = ["version"]
name = "tsmixer"
authors = [
{name = "Mahdi Lamb", email = "mahdilamb@gmail.com"},
{name = "Si-An Chen, Chun-Liang Li, Nate Yoder, Sercan Arik and Tomas Pfister", email = "email@research.google.com"},
]
dependencies = [
"numpy",
"matplotlib",
"pandas",
"scikit-learn",
"tensorflow",
"fn2argparse@git+https://github.com/mahdilamb/argparse-from-fn",
]
[project.optional-dependencies]
all = ["tsmixer[test,tensorboard,dev]"]
dev = ["dynamic-markdown@git+https://github.com/mahdilamb/dynamic-markdown", "seaborn", "tabulate"]
tensorboard = [
"tensorboard",
]
test = [
"black",
"isort",
"mypy",
"bandit",
"pytest",
"pytest-cov",
"docformatter",
"pydocstyle",
]
[tool.setuptools.dynamic]
version = {attr = "tsmixer.__version__"}
[tool.setuptools]
packages = ["tsmixer"]
[tool.bandit]
exclude_dirs = ["tests"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.docformatter]
black = true
recursive = true
[tool.pytest.ini_options]
minversion = "6.0"
python_files = [
"test_*.py",
]
python_functions = ["*_test"]
testpaths = [
"tests",
]