-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.04 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
[tool.poetry]
name = "marcgrep"
version = "1.3.0"
description = "search MARC files for regex matches"
authors = ["phette23 <[email protected]>"]
license = "MIT"
readme = "readme.md"
homepage = "https://github.com/phette23/marcgreppy"
repository = "https://github.com/phette23/marcgreppy"
keywords = ["marc", "grep", "regex", "libraries", "cli", "metadata", "bibliographic", "cataloging"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
[tool.poetry.urls]
"Issues" = "https://github.com/phette23/marcgreppy/issues"
[tool.poetry.dependencies]
click = "8.1.7"
pymarc = "5.1.2"
python = ">3.8"
termcolor = "2.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.1.1"
[tool.poetry.scripts]
marcgrep = "marcgrep.cli:main"
[tool.setuptools.packages.find]
where = ["marcgrep"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"