-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 998 Bytes
/
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
[tool.poetry]
name = "faceai-bgimpact"
version = "0.2.4"
authors = ["Thomas Kientz", "Adèle Moreau", "Elena Loumagne"]
description = "FaceAI-BGImpact implements various generative methods and studies the impact of altering the background on the generated images and the training of the models."
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
kaggle = "^1.5.16"
opencv-python-headless = "^4.8.1.78"
pillow = "^10.1.0"
numpy = "^1.26.2"
rembg = "^2.0.52"
ipykernel = "^6.26.0"
matplotlib = "^3.8.1"
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
torchvision = "^0.16.0"
torchaudio = "^2.1.0"
pytest = "^7.4.3"
pytorch-gan-metrics = "^0.5.3"
pip = "^23.3.1"
install = "^1.3.5"
imageio = "2.19.3"
imageio-ffmpeg = "0.4.7"
scikit-learn = "1.3.2"
plotly = "^5.18.0"
kaleido = "0.2.1"
provae = "^0.1.0"
[tool.poetry.scripts]
faceai-bgimpact = "faceai_bgimpact.main:main"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"