-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "echo-augmentation-cvae"
description = "A Python package for data augmentation of ultrasound foetal echography images using cVAEs"
authors = [
{name = "Pierre-Louis Barbarant", email = "[email protected]"},
{name = "Yasmine Daouia", email = "[email protected]"},
{name = "Malek Ben-Salah", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.20",
"matplotlib>=3.7",
"scikit-learn>=1.2",
"scikit-image>=0.20",
"torch>=2.1.0",
"tqdm>=4.62",
"Pillow>=9.5",
"pyraug>=0.0.6",
"pythae>=0.1.2",
"diffusers>=0.25.0",
"datasets>=2.16.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1",
"pre-commit>=2.0",
]
[project.urls]
homepage = "https://github.com/pbarbarant/data_augmentation_sonio"
repository = "https://github.com/pbarbarant/data_augmentation_sonio.git"