-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (33 loc) · 887 Bytes
/
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
[metadata]
name = fluidos-model-orchestrator
version = 0.0.1
author = 'Stefano Braghin, Liubov Nedoshivina, Killian Levacher'
author_email = 'stefanob@ie.ibm.com; liubov.nedoshivina@ibm.com; killian.levacher@ibm.com'
[options]
py_modules = fluidos_model_orchestrator
python_requires = >=3.10
install_requires =
kopf==1.37.2
kubernetes==31.0.0
PyYAML==6.0.1
pandas==2.1.1
numpy==1.26.0
sentence-transformers==2.2.2
torch==2.1.0
tensorflow-datasets==4.9.3 # for dataset pipeline
docker==7.0.0
huggingface-hub==0.21.4
[bdist_wheel]
universal = True
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = false
disable_error_code = import-untyped
[mypy-tests.*]
disallow_untyped_defs = false
[flake8]
ignore = E265,E501,W504