mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-17 19:47:03 +01:00
Alan Orth
ccc2a73456
If we have country "Kenya" we should have region "Eastern Africa" according to the UN M.49 geolocation scheme.
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[tool.poetry]
|
|
name = "csv-metadata-quality"
|
|
version = "0.4.8-dev"
|
|
description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem."
|
|
authors = ["Alan Orth <alan.orth@gmail.com>"]
|
|
license="GPL-3.0-only"
|
|
repository = "https://github.com/ilri/csv-metadata-quality"
|
|
homepage = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
[tool.poetry.scripts]
|
|
csv-metadata-quality = 'csv_metadata_quality.__main__:main'
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7.1"
|
|
pandas = "^1.0.4"
|
|
python-stdnum = "^1.13"
|
|
xlrd = "^1.2.0"
|
|
requests = "^2.23.0"
|
|
requests-cache = "~0.6.4"
|
|
pycountry = "^19.8.18"
|
|
langid = "^1.1.6"
|
|
colorama = "^0.4.4"
|
|
spdx-license-list = "^0.5.2"
|
|
ftfy = "^5.9"
|
|
SQLAlchemy = ">=1.3.3,<1.4.23"
|
|
country-converter = "^0.7.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.1.1"
|
|
ipython = { version = "^7.18.1", python = "^3.7" }
|
|
flake8 = "^3.8.4"
|
|
pytest-clarity = "^1.0.1"
|
|
black = "^21.6b0"
|
|
isort = "^5.5.4"
|
|
csvkit = "^1.0.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|