generated from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
60 lines (52 loc) · 1.06 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
[metadata]
name = cmapss
description = Novel algorithms to predict Remaining Useful Life (RUL) on NASA’s benchmark dataset, CMAPSS turbofan engine degradation simulation.
url = https://github.com/ozogxyz/cmapss
long_description = file: README.md
author = Orkun Ozoglu
author_email = ""
keywords = python
license = MIT Licence
[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,<2.1
torchmetrics==0.10.*
hydra-core==1.2.*
wandb
streamlit
rul-datasets>=0.3,<0.11
# hydra-joblib-launcher
# Stable stuff usually backward compatible
rich
dvc
python-dotenv
matplotlib
stqdm
[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