-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
45 lines (41 loc) · 1.12 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
45
[build-system]
requires = ["maturin>=1.7.4,<2.0.0"]
build-backend = "maturin"
[project]
name = "stream-unzip"
version = "0.0.0.dev0"
authors = [
{ name="Department for International Trade", email="[email protected]" },
]
description = "Python function to stream unzip all the files in a ZIP archive, without loading the entire ZIP file into memory or any of its uncompressed files"
readme = "README.md"
requires-python = ">=3.7.1"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Archiving :: Compression",
"Typing :: Typed",
]
dependencies = [
"pycryptodome>=3.10.1",
"stream-inflate>=0.0.12",
]
[project.optional-dependencies]
dev = [
"coverage>=6.2",
"mypy>=1.4.1",
"pytest>=6.2.5",
"pytest-cov>=3.0.0",
"trio>=0.19.0",
]
ci = [
"mypy==1.4.1",
"pycryptodome==3.10.1",
"stream-inflate==0.0.12",
]
[project.urls]
"Documentation" = "https://stream-unzip.docs.trade.gov.uk/"
"Source" = "https://github.com/uktrade/stream-unzip"
[tool.maturin]
python-source = "python"
module-name = "stream_unzip._zipcrypto"