-
Notifications
You must be signed in to change notification settings - Fork 72
/
pyproject.toml
44 lines (38 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
44
[tool.poetry]
authors = ["Johannes Filter <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
description = "Split folders with files (e.g. images) into training, validation and test (dataset) folders."
keywords = ["machine-learning", "training-validation-test", "datasets", "folders"]
license = "MIT"
name = "split_folders"
packages = [
{include = "splitfolders"},
]
readme = "README.md"
repository = "https://github.com/jfilter/split-folders"
version = "0.5.1"
[tool.poetry.scripts]
split-folders = "splitfolders.cli:run"
split_folders = "splitfolders.cli:run"
splitfolders = "splitfolders.cli:run"
[tool.poetry.dependencies]
python = ">=3.6"
tqdm = {version = "*", optional = true}
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true, python = ">=3.6"}
pylint = "*"
pytest = "*"
tqdm = "*"
[tool.poetry.extras]
full = ["tqdm"]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]