This repository was archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.96 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
[tool.poetry]
authors = ["Joris Clement <j.clement@campus.tu-berlin.de>"]
description = "Code to Master's Thesis at TU Berlin."
license = "MIT"
name = "jc-thesis-code"
readme = "README.md"
version = "1.9.0"
[tool.poetry.dependencies]
click = "^7.1.2"
dtaidistance = "~2.2.5"
imbalanced-learn = "^0.8.0"
lightgbm = "^3.1.1"
matplotlib = "^3.3.2"
numpy = "^1.19.4"
pandas = "^1.1.2"
python = "^3.8.7"
pyts = "^0.11.0"
scikit-learn = "~0.24.2"
scipy = "^1.5.2"
seaborn = "^0.11.0"
shap = "^0.39.0"
sktime = "^0.6.1"
tensorflow = "~2.5.2"
tsfresh = "^0.18.0"
tslearn = "~0.5"
[tool.poetry.dev-dependencies]
black = "^21.7b0"
coverage = "^5.3"
flake8 = "^3.9.2"
flake8-black = "^0.2.3"
flake8-import-order = "^0.18.1"
jupyterlab = "^3.0.16"
mat4py = "^0.4.3"
mypy = "^0.910"
pytest = "^6.1.0"
pytest-cov = "^2.10.1"
pytest-xdist = "^2.1.0"
statsmodels = "^0.12.2"
[tool.poetry.scripts]
calc-test-scores = "jc_thesis_code.calc_test_scores:click_command"
check-pd-data = "jc_thesis_code.check_pd_data:main"
classify = "jc_thesis_code.classify:main"
grid-search = "jc_thesis_code.grid_search:main"
gui = "jc_thesis_code.gui:main"
illu-dtw = "jc_thesis_code.illustrate_dtw:main"
mat2csv = "jc_thesis_code.convert:mat2csv"
plot-stratified-kfold = "jc_thesis_code.plot_stratified_kfold:main"
print-feature-extract-times = "jc_thesis_code.print_feature_extraction_times:click_command"
show-test-scores = "jc_thesis_code.show_test_scores:click_command"
tsfresh-features = "jc_thesis_code.tsfresh_features:main"
visualize-fingerprints = "jc_thesis_code.visualize_fingerprints:main"
visualize-grid = "jc_thesis_code.visualize_grid:main"
visualize-pd-data = "jc_thesis_code.visualize_pd_data:main"
visualize-results = "jc_thesis_code.visualize_results:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["jc_thesis_code"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"