-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpyproject.toml
40 lines (32 loc) · 913 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bagit"
dynamic = ["version"]
description = "Create and validate BagIt packages"
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name = "Ed Summers", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Topic :: Communications :: File Sharing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
]
[project.urls]
Homepage = "https://libraryofcongress.github.io/bagit-python/"
[tool]
[tool.ruff]
target-version = "py38"
[tool.setuptools_scm]
[tool.isort]
line_length = 110
default_section = "THIRDPARTY"
known_first_party = "bagit"
[tool.coverage.run]
branch = true
include = "bagit.py"