-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
executable file
·84 lines (74 loc) · 1.96 KB
/
setup.cfg
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
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = latent-aggregation
description = Aggregating those latents.
url = https://github.com/crisostomi/latent-aggregation
long_description = file: README.md
author = Donato Crisostomi
author_email = [email protected]
keywords = python
license = MIT Licence
[options.entry_points]
console_scripts =
prepare_data_part_shared_part_novel = la.scripts.prepare_data_part_shared_part_novel:main
prepare_data_same_classes_disj_samples = la.scripts.prepare_data_same_classes_disj_samples:run
prepare_data_totally_disjoint = la.scripts.prepare_data_totally_disjoint:run
run_part_shared_part_novel = la.scripts.run_part_shared_part_novel:run
run_same_classes_disj_samples = la.scripts.run_same_classes_disj_samples:run
run_totally_disjoint = la.scripts.run_totally_disjoint:run
analyze_part_shared_part_novel = la.scripts.analyze_part_shared_part_novel:run
analyze_same_classes_disj_samples = la.scripts.analyze_same_classes_disj_samples:run
analyze_totally_disjoint = la.scripts.analyze_totally_disjoint:run
embed_totally_disjoint = la.scripts.embed_totally_disjoint:run
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages=find:
install_requires =
nn-template-core==0.2.*
# Add project specific dependencies
# Stuff easy to break with updates
pytorch-lightning==1.7.*
torchmetrics==0.10.*
hydra-core==1.2.*
wandb
streamlit
timm
transformers
datasets
dvc_gdrive
hdf5storage
tueplots
scikit-learn
kornia
plotly
nbformat
# hydra-joblib-launcher
# Stable stuff usually backward compatible
rich
dvc
python-dotenv
matplotlib
stqdm
backports.strenum
[options.packages.find]
where=src
[options.package_data]
* = *.txt, *.md
[options.extras_require]
docs =
mkdocs
mkdocs-material
mike
test =
pytest
pytest-cov
dev =
black
flake8
isort
pre-commit
bandit
%(test)s
%(docs)s