-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (36 loc) · 907 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
41
42
43
44
[tool.poetry]
name = "marctable"
version = "0.4.0"
description = "Convert MARC to CSV and Parquet"
authors = ["Ed Summers <[email protected]>"]
license = "Apache"
readme = "README.md"
[tool.setuptools.packages.find]
where = ["marctable"]
[tool.setuptools.package-data]
marctable = ["*.json"]
[tool.poetry.dependencies]
python = "^3.11"
pymarc = "^5.1.0"
pyarrow = "^14.0.2"
pandas = "^2.1.4"
beautifulsoup4 = "^4.12.2"
requests = "^2.31.0"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "^23.12.0"
types-requests = "^2.31.0.10"
types-beautifulsoup4 = "^4.12.0.7"
mypy = "^1.8.0"
pandas-stubs = "^2.1.4.231227"
pyarrow-stubs = "^10.0.1.7"
[tool.poetry.scripts]
marctable = "marctable:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/edsu/marctable"
[tool.mypy]
warn_no_return = false