-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.46 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.46 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
from setuptools import setup
import re
from pathlib import Path
def get_version():
with open(Path(__file__).parent / "patientflow" / "__init__.py") as f:
for line in f:
if line.startswith("__version__"):
return re.split(r"['\"]", line)[1]
setup(
name="patientflow",
version=get_version(),
description="A package containing Flow Matching models to generate mixed-type longitudinal clinical data.",
author="Ruben Branco, Piero Fariselli, Sara Madeira",
author_email="rmbranco@fc.ul.pt",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
],
keywords="mixed-type longitudinal clinical data, generative models, deep learning",
packages=[
"patientflow",
"patientflow.models",
],
install_requires=[
"torch==2.3.1",
"lightning==2.2.2",
"numpy==1.23.5",
"pandas==1.5.3",
"torchdiffeq==0.2.2",
"scikit-learn==1.4.2",
"torchcfm==1.0.5",
],
extras_requires={
"experiments": [
"wandb==0.17.4",
"rpy2==3.5.16",
"seaborn==0.13.2",
"msas-pytorch",
"matplotlib==3.9.0",
"tslearn==0.6.3",
"numba==0.59.1",
"openpyxl",
"ipykernel",
],
},
url="https://github.com/RubenBranco/PatientFlow",
)