-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.65 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "auto-toolkit-cli"
version = "1.0.0"
description = "A small CLI toolkit of everyday automation utilities: file organizing, duplicate finding, bulk renaming, disk usage reports, port scanning, image resizing, PDF-to-audio, and ad-hoc API requests."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Worof Ahmed" }]
keywords = ["automation", "cli", "file-management", "productivity", "scripts"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"requests>=2.28",
]
[project.optional-dependencies]
images = ["Pillow>=9.0"]
audio = ["pyttsx3>=2.90", "pdfplumber>=0.10", "pydub>=0.25", "tqdm>=4.65"]
all = ["Pillow>=9.0", "pyttsx3>=2.90", "pdfplumber>=0.10", "pydub>=0.25", "tqdm>=4.65"]
dev = ["pytest>=7.0", "pytest-cov>=4.0"]
[project.urls]
Homepage = "https://github.com/Worof/Python-Automation-Toolkit"
Repository = "https://github.com/Worof/Python-Automation-Toolkit"
Issues = "https://github.com/Worof/Python-Automation-Toolkit/issues"
[project.scripts]
autotoolkit = "autotoolkit.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]