2020-05-31 16:31:36 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "csv-metadata-quality"
|
2022-09-02 15:35:58 +02:00
|
|
|
version = "0.6.0"
|
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-01-30 11:03:13 +01:00
|
|
|
python = "^3.8"
|
2022-11-07 10:13:28 +01:00
|
|
|
pandas = "^1.5.1"
|
|
|
|
python-stdnum = "^1.17"
|
2022-09-02 15:30:40 +02:00
|
|
|
requests = "^2.28.1"
|
2022-11-07 10:13:28 +01:00
|
|
|
requests-cache = "^0.9.7"
|
2020-05-31 16:31:36 +02:00
|
|
|
langid = "^1.1.6"
|
2022-09-02 15:30:40 +02:00
|
|
|
colorama = "^0.4.5"
|
2021-03-11 09:33:16 +01:00
|
|
|
spdx-license-list = "^0.5.2"
|
2022-09-02 15:30:40 +02:00
|
|
|
ftfy = "^6.1.1"
|
2022-11-28 15:38:45 +01:00
|
|
|
country-converter = {git = "https://github.com/alanorth/country_converter.git", rev = "myanmar-region"}
|
2022-11-08 08:21:28 +01:00
|
|
|
pycountry = {git = "https://github.com/alanorth/pycountry", rev = "iso-codes-4.12.0"}
|
2020-05-31 16:31:36 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-11-07 10:13:28 +01:00
|
|
|
pytest = "^7.2.0"
|
2022-09-02 15:30:40 +02:00
|
|
|
flake8 = "^5.0.4"
|
2021-07-06 14:30:41 +02:00
|
|
|
pytest-clarity = "^1.0.1"
|
2022-11-07 10:13:28 +01:00
|
|
|
black = "^22.10.0"
|
2022-09-02 15:30:40 +02:00
|
|
|
isort = "^5.10.1"
|
|
|
|
csvkit = "^1.0.7"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
2022-11-28 15:11:18 +01:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
ipython = "^8.7.0"
|
|
|
|
|
2020-05-31 16:31:36 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|