2020-05-31 16:31:36 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "csv-metadata-quality"
|
2021-03-11 21:44:36 +01:00
|
|
|
version = "0.4.6-dev"
|
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]
|
2021-03-11 12:41:58 +01:00
|
|
|
python = "^3.7.1"
|
2020-05-31 16:31:36 +02:00
|
|
|
pandas = "^1.0.4"
|
|
|
|
python-stdnum = "^1.13"
|
|
|
|
xlrd = "^1.2.0"
|
|
|
|
requests = "^2.23.0"
|
|
|
|
requests-cache = "^0.5.2"
|
|
|
|
pycountry = "^19.8.18"
|
|
|
|
langid = "^1.1.6"
|
2021-02-21 12:00:31 +01:00
|
|
|
colorama = "^0.4.4"
|
2021-03-11 09:33:16 +01:00
|
|
|
spdx-license-list = "^0.5.2"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-10-06 16:20:16 +02:00
|
|
|
pytest = "^6.1.1"
|
2020-10-06 16:48:16 +02:00
|
|
|
ipython = { version = "^7.18.1", python = "^3.7" }
|
2020-10-06 16:20:16 +02:00
|
|
|
flake8 = "^3.8.4"
|
2020-05-31 16:31:36 +02:00
|
|
|
pytest-clarity = "^0.3.0-alpha.0"
|
2020-10-06 16:20:16 +02:00
|
|
|
black = "20.8b1"
|
|
|
|
isort = "^5.5.4"
|
2020-05-31 16:31:36 +02:00
|
|
|
csvkit = "^1.0.5"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|