-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.17 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
[project]
name = "split-folders"
version = "0.6.1"
description = "Split folders with files (e.g. images) into training, validation and test (dataset) folders."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Johannes Filter", email = "hi@jfilter.de"},
]
keywords = ["machine-learning", "training-validation-test", "datasets", "folders"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
[project.optional-dependencies]
full = ["tqdm"]
[project.scripts]
split-folders = "splitfolders.cli:run"
split_folders = "splitfolders.cli:run"
splitfolders = "splitfolders.cli:run"
[project.urls]
Repository = "https://github.com/jfilter/split-folders"
[tool.poetry]
packages = [
{include = "splitfolders"},
]
[tool.poetry.group.dev.dependencies]
pytest = "*"
ruff = "*"
tqdm = "*"
pre-commit = "*"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]