-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
31 lines (27 loc) · 1.04 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
[tool.poetry]
name = "seft"
version = "0.1.0"
description = "Set functions for Time Series"
authors = ["Anonymous"]
license = "BSD-3-clause"
[tool.poetry.dependencies]
python = "~3.7" # tensorflow 1.15.x is not available for python 3.8 and 3.9
tensorflow = { version = "=1.15.3", markers = "sys_platform != 'linux'" }
tensorflow-gpu = { version = "=1.15.3", markers = "sys_platform == 'linux'" }
medical-ts-datasets = { git = "https://github.com/ExpectationMax/medical_ts_datasets.git", branch = "master" }
keras-transformer = { git = "https://github.com/ExpectationMax/keras-transformer.git", branch = "master" }
tensorflow-datasets = ">=2.0.0,<4.0.0"
scikit-learn = "^0.22.1"
tqdm = "^4.42.0"
[tool.poetry.dev-dependencies]
ipdb = "^0.12.3"
tabulate = "^0.8.6"
matplotlib = "^3.1.2"
seaborn = "^0.10.0"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
seft_fit_model = "seft.cli.fit_model:main"
seft_prepare_datasets = "seft.cli.prepare_datasets:main"
seft_evaluate_model = "seft.cli.evaluate_model:main"