-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (53 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
65 lines (53 loc) · 1.31 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "bagit"
dynamic = ["version"]
description = "Create and validate BagIt packages"
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name = "Chris Adams", email = "chris@improbable.org" },
{ name = "Ed Summers", email = "ehs@pobox.com" }
]
classifiers = [
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Topic :: Communications :: File Sharing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
]
requires-python = ">= 3.9"
[project.scripts]
"bagit" = "bagit:main"
[project.urls]
Homepage = "https://libraryofcongress.github.io/bagit-python/"
[tool]
[tool.ruff]
target-version = "py38"
[tool.isort]
line_length = 110
default_section = "THIRDPARTY"
known_first_party = "bagit"
[tool.pytest.ini_options]
testpaths = ["test.py"]
addopts = "-v"
[tool.coverage.run]
branch = true
include = "src"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
packages = ["src/bagit"]
include = [
"src/bagit/*.py",
"src/bagit/locale/*.po",
"src/bagit/locale/*.mo",
]
[dependency-groups]
dev = [
"coverage>=7.8.2",
"pytest>=8.4.0",
"ruff>=0.11.12",
]