-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 2.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zippy-py"
version = "2.0.0"
description = "Archive Utility Toolkit supporting multi-format workflows, password recovery, and repair helpers."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "John Hauger Mitander", email = "john@on1.no" },
]
maintainers = [
{ name = "John Hauger Mitander", email = "john@on1.no" },
]
keywords = ["archives", "zip", "tar", "cli", "toolkit", "compression", "encryption", "password-recovery"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Compression",
"Topic :: Utilities",
]
dependencies = [
"colorama>=0.4.6",
"python-dotenv>=1.0",
"pyzipper>=0.3.6",
"patool>=1.12",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
]
full = [
"py7zr>=0.20.0",
"rarfile>=4.0",
]
windows = [
"pyinstaller>=5.0",
]
macos = [
"py2app>=0.28",
]
[project.urls]
Homepage = "https://github.com/John0n1/zippy"
Documentation = "https://github.com/John0n1/zippy#readme"
Repository = "https://github.com/John0n1/zippy.git"
Issues = "https://github.com/John0n1/zippy/issues"
Changelog = "https://github.com/John0n1/zippy/releases"
[project.scripts]
zippy = "zippy.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["zippy", "zippy.*"]
[tool.setuptools.package-data]
zippy = ["*.txt", "*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]