-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 967 Bytes
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
[project]
name = "zipfile64"
version = "0.1.0"
description = "Adds Deflate64 support to Python's zipfile module"
readme = "README.md"
authors = [
{ name = "Marcel Vingerling", email = "marcel.vingerling@braincreators.com" }
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"inflate64>=1.0.4",
]
[project.scripts]
zipfile64 = "zipfile64.zipfile:main"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=4.0.0",
"pre-commit>=3.0.0",
"ruff>=0.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["uv_build>=0.10.6,<0.11.0"]
build-backend = "uv_build"