-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.44 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
[tool.poetry]
name = "simd_structts"
version = "0.2.0"
description = "SIMD StuctTS Model with various backends"
authors = [
"Vladimir Shulyak <vladimir@shulyak.net>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vshulyak/simd-structts"
repository = "https://github.com/vshulyak/simd-structts"
documentation = "https://github.com/vshulyak/simd-structts"
keywords = ["simd", "kalman", "time-series", "forecasting"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = ["CHANGELOG.md"]
[tool.poetry.urls]
"Changelog" = "https://github.com/vshulyak/simd-structts/tree/main/CHANGELOG.rst"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.poetry.dependencies]
python = "^3.7"
statsmodels = "^0.13.0"
simdkalman = "^1.0.1"
[tool.poetry.dev-dependencies]
pre-commit = "*"
autoflake = "*"
reorder-python-imports = "*"
black = "19.10b0"
pytest = "^5.4.3"
coverage = {extras = ["toml"], version = "^5.1"}
pytest-cov = "^2.10.0"
pytest-mock = "^3.1.1"
twine = "^3.2.0"
requests = "*"
tox = "^3.21.0"
detect-secrets = "^0.14.3"
hypothesis = "^5.43.4"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["simd_structts"]
[tool.coverage.report]
show_missing = true
fail_under = 10
exclude_lines = ["pragma: no cover"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"