-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (114 loc) · 2.91 KB
/
pyproject.toml
File metadata and controls
122 lines (114 loc) · 2.91 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "synthlab"
version = "0.1.0"
description = "Python tools for working with synthetic healthcare datasets (Synthea, UK Biobank Synthetic Dataset)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
keywords = ["synthea", "ukbiobank", "synthetic", "healthcare", "omop", "cdm", "patient", "data", "biobank"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"pooch>=1.6.0",
"pandas>=1.5.0",
"polars>=0.19.0",
"requests>=2.28.0",
"matplotlib>=3.5.0",
"tiktoken>=0.6.0",
"torch",
"torchvision",
"transformers>=4.50.0",
"sentence-transformers",
"python-dotenv",
"litellm",
"accelerate",
"bitsandbytes",
"biomcp-python",
"biodb @ git+https://github.com/standardmodelbio/bioDB",
]
[project.optional-dependencies]
aws = [
"boto3>=1.26.0",
]
viz = [
# Notebook visualisation stack used by notebooks/olink_demo.ipynb.
"matplotlib>=3.8",
"seaborn>=0.13",
"scikit-learn>=1.5",
"umap-learn>=0.5",
]
genomics = [
"numpy>=1.20.0",
]
imaging = [
"pydicom>=2.4.0",
]
tracking = [
"wandb>=0.16.0",
]
snomed = [
"faiss-cpu>=1.7.0",
"faiss-gpu>=1.7.0",
"numpy>=1.20.0",
]
visualization = [
"pyvis>=0.3.0",
"networkx>=2.8.0",
]
meds = [
# Medical Event Data Standard ETL (OMOP / MIMIC-IV → MEDS parquet).
# https://github.com/Medical-Event-Data-Standard/meds_etl
"meds_etl>=0.3",
"meds>=0.4",
]
tests = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
all = [
"boto3>=1.26.0",
"numpy>=1.20.0",
"pydicom>=2.4.0",
"wandb>=0.16.0",
"tqdm>=4.60.0",
"tiktoken>=0.6.0",
"faiss-cpu>=1.7.0",
"faiss-gpu>=1.7.0",
"pyvis>=0.3.0",
"networkx>=2.8.0",
"meds_etl>=0.3",
"meds>=0.4",
]
[project.urls]
Homepage = "https://github.com/yourusername/synthlab"
Documentation = "https://github.com/yourusername/synthlab#readme"
Repository = "https://github.com/yourusername/synthlab"
Issues = "https://github.com/yourusername/synthlab/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["synthlab*"]
[tool.setuptools.package-data]
synthlab = ["py.typed", "data/*.csv"]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.isort]
profile = "black"
line_length = 100