-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
50 lines (46 loc) · 1.21 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
46
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "stream-zip"
version = "0.0.0.dev0"
authors = [
{ name="Department for International Trade", email="sre@digital.trade.gov.uk" },
]
description = "Python function to construct a ZIP archive with stream processing - without having to store the entire ZIP in memory or disk"
readme = "README.md"
requires-python = ">=3.6.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Archiving :: Compression",
]
dependencies = [
"pycryptodome>=3.10.1",
]
[project.optional-dependencies]
dev = [
"coverage>=6.2",
"pytest>=7.0.1",
"pytest-cov>=3.0.0",
"stream-unzip>=0.0.86",
"pyzipper>=0.3.6",
# Type checking
"mypy>=0.971",
'types-contextvars>=2.4.7.3; python_version<"3.7"',
]
ci = [
"pycryptodome==3.10.1",
"stream-unzip==0.0.86",
"pyzipper==0.3.6",
# Type checking
"mypy==0.971",
'types-contextvars==2.4.7.3; python_version<"3.7"',
]
[project.urls]
"Documentation" = "https://stream-zip.docs.trade.gov.uk/"
"Source" = "https://github.com/uktrade/stream-zip"
[tool.hatch.build]
include = [
"stream_zip",
]