-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
65 lines (53 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=50.3.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "HathiZip"
version = "0.1.12.dev0"
requires-python = ">=3.9"
readme = "README.rst"
license = {text = "University of Illinois/NCSA Open Source License"}
authors = [
{name = "University Library at The University of Illinois at Urbana Champaign: Preservation Services", email = "prescons@library.illinois.edu"},
]
maintainers = [
{name = "Henry Borchers", email = "hborcher@illinois.edu"}
]
description = "Creates .zip file packages for HathiTrust. Replacement script for HathiTrust Zip and Submit."
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Archiving :: Compression",
]
[project.urls]
Documentation = "https://www.library.illinois.edu/dccdocs/hathi_zip/"
Download = "https://github.com/UIUCLibrary/HathiZip"
[tool.setuptools]
packages = [
"hathizip",
]
zip-safe = false
[tool.setuptools.package-data]
hathizip = ["py.typed"]
[project.scripts]
hathivalidate = "hathizip.__main__:main"
[tool.coverage.run]
branch = true
source = ["hathizip"]
relative_files = true
[tool.coverage.paths]
source = ["hathizip"]
[tool.coverage.report]
exclude_lines =[
"if TYPE_CHECKING:"
]
[tool.cibuildwheel]
build = "*"
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--verbose"
testpaths = [
"tests"
]