-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (46 loc) · 1.25 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
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
extend-select = ["I"]
[tool.black]
line-length = 120
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
[tool.poetry]
name = "crossai-ts"
version = "0.0.0.1"
description = "An open-source Python library for developing end-to-end AI pipelines for Time Series Analysis"
authors = ["Pantelis Tzamalis <[email protected]>", "George Kontogiannis <[email protected]>"]
readme = "README.md"
license = "Apache License 2.0"
packages = [{ include = "caits", from = "." }]
[tool.poetry.dependencies]
python = "~3.11"
tensorflow = "2.14.0"
tensorflow-metal = {version = "1.1.0", markers = "platform_system == \"Darwin\""}
pandas = "2.2.0"
pyarrow = "15.0.2"
scipy = "1.12.0"
scikit-learn = "1.4.0"
seaborn = ">=0.12.2"
soundfile = "0.12.1"
tsaug = "0.2.1"
resampy = "0.4.2"
samplerate = [
{version = "0.1.0", markers = "platform_system == \"Linux\""},
{version = "0.2.1", markers = "platform_system == \"Darwin\""}
]
soxr = "0.3.7"
pyyaml = "6.0.1"
boto3 = "1.29.2"
tqdm = "4.66.2"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
ruff = "^0.4.4"
mypy = "^1.10.0"
ruff-lsp = "^0.0.53"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"