-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.04 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
[project]
name = "deepaugment"
version = "2.5.0"
description = "Automated data augmentation using Bayesian optimization"
authors = [{ name = "Barış Özmen", email = "hbaristr@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"tqdm>=4.66.0",
"fire>=0.6.0",
"matplotlib>=3.10.7",
"scikit-optimize>=0.10.2",
"toolz>=1.1.0",
"attrs>=25.4.0",
"cattrs>=25.3.0",
"python-decouple>=3.8",
]
[project.scripts]
deepaugment = "deepaugment.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatchling.build.targets.wheel]
packages = ["src/deepaugment"]
[dependency-groups]
dev = [
# testing
"pytest>=8.0.0",
# development
"ipython>=8.0.0",
# linting and code visualization (pyreverse comes with pylint)
"pylint>=4.0.2",
# documentation
"sphinx>=8.2.3",
"furo>=2025.9.25",
"sphinx-autobuild>=2025.8.25",
"sphinx-design>=0.6.1",
"myst-parser>=4.0.1",
"tomli>=2.3.0",
]