-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 972 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
[tool.poetry]
name = "dwcahandler"
version = "0.4.0"
description = "Python package to handle Darwin Core Archive (DwCA) operations. This includes creating a DwCA zip file from one or more csvs, reading a DwCA, merge two DwCAs, validate DwCA and delete records from DwCA based on one or more key columns"
authors = ["Atlas of Living Australia data team <[email protected]>"]
maintainers = ["Atlas of Living Australia data team <[email protected]>"]
repository = "https://github.com/AtlasOfLivingAustralia/dwcahandler"
license = "MPL-1.1"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9"
pandas = "^2.2.0"
requests = "^2.32.0"
pytest = "^8.2.0"
pytest-mock = "^3.12.0"
pytest-cov = "^5.0.0"
metapype = "^0.0.26"
flake8 = "^7.1.1"
[tool.poetry.scripts]
update-dwc-terms = "dwcahandler.scripts.update_dwc_terms:update_terms"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"