-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (41 loc) · 1.11 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
import setuptools
setuptools.setup(
name="liposarc",
version="1.0.0",
author="Owkin",
description="Codebase for the Liposarcome project.",
license="Proprietary",
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
"numpy==1.23.5",
"omegaconf==2.1.2",
"openpyxl==3.0.10",
"pandas==1.5.3",
"pydantic < 2.0",
"python-dotenv==0.15.0",
"retry==0.9.2",
"rich==10.15.2",
"scikit-learn==1.0.2",
"substratools==0.20.0",
"substra==0.45.0",
"substrafl==0.37.1",
"torch==1.13.1",
"torchmetrics==0.9.3",
"torchvision==0.14.1",
"hydra-colorlog==1.1.0",
"hydra-core==1.1.1",
"hydra-optuna-sweeper==1.1.1",
"loguru==0.5.3",
"matplotlib==3.5.1",
"mlflow-export-import==1.2.0",
"mlflow==2.2.1",
"protobuf==3.20.2",
"statsmodels==0.13.2",
"typer==0.3.2",
"pytest-mock==3.14.0",
],
entry_points={
"console_scripts": ["liposarcome-dl=liposarcome.cli.dl:main"],
},
)