2020-05-31 16:31:36 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "csv-metadata-quality"
|
2023-02-23 11:46:56 +01:00
|
|
|
version = "0.6.1"
|
2020-05-31 16:31:36 +02:00
|
|
|
description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem."
|
|
|
|
authors = ["Alan Orth <alan.orth@gmail.com>"]
|
2020-06-09 13:22:53 +02:00
|
|
|
license="GPL-3.0-only"
|
2020-05-31 16:31:36 +02:00
|
|
|
repository = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
homepage = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
|
2021-03-08 08:49:43 +01:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
csv-metadata-quality = 'csv_metadata_quality.__main__:main'
|
|
|
|
|
2020-05-31 16:31:36 +02:00
|
|
|
[tool.poetry.dependencies]
|
2022-12-13 08:41:32 +01:00
|
|
|
python = "^3.9"
|
2023-05-29 21:22:30 +02:00
|
|
|
pandas = {version = "^2.0.2", extras = ["feather", "performance"]}
|
2023-02-18 20:09:05 +01:00
|
|
|
python-stdnum = "^1.18"
|
|
|
|
requests = "^2.28.2"
|
2023-05-29 21:25:58 +02:00
|
|
|
requests-cache = "^1.0.0"
|
2020-05-31 16:31:36 +02:00
|
|
|
langid = "^1.1.6"
|
2023-02-18 20:09:05 +01:00
|
|
|
colorama = "^0.4.6"
|
2022-09-02 15:30:40 +02:00
|
|
|
ftfy = "^6.1.1"
|
2023-11-20 19:37:44 +01:00
|
|
|
country-converter = "~1.1.0"
|
2023-12-09 10:04:14 +01:00
|
|
|
pycountry = "^23.12.7"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
2023-04-05 11:37:03 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-02-18 20:09:05 +01:00
|
|
|
pytest = "^7.2.1"
|
|
|
|
flake8 = "^6.0.0"
|
2021-07-06 14:30:41 +02:00
|
|
|
pytest-clarity = "^1.0.1"
|
2023-02-18 20:09:05 +01:00
|
|
|
black = "^23.1.0"
|
|
|
|
isort = "^5.12.0"
|
|
|
|
csvkit = "^1.1.0"
|
|
|
|
ipython = "^8.10.0"
|
2023-11-22 19:54:09 +01:00
|
|
|
fixit = "^2.1.0"
|
2022-11-28 15:11:18 +01:00
|
|
|
|
2020-05-31 16:31:36 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
2022-12-20 14:03:10 +01:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length=88
|