2024-04-14 21:02:05 +02:00
|
|
|
[project]
|
2020-05-31 16:31:36 +02:00
|
|
|
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."
|
2024-04-14 21:02:05 +02:00
|
|
|
authors = [
|
|
|
|
{ name = "Alan Orth", email = "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"
|
2024-04-14 21:02:05 +02:00
|
|
|
dependencies = [
|
|
|
|
"pandas[feather,performance]>=2.2.1",
|
|
|
|
"python-stdnum>=1.19",
|
|
|
|
"requests>=2.31.0",
|
|
|
|
"requests-cache>=1.2.0",
|
|
|
|
"colorama>=0.4.6",
|
|
|
|
"ftfy>=6.1.3",
|
|
|
|
"country-converter>=1.2",
|
|
|
|
"pycountry>=23.12.11",
|
|
|
|
"py3langid>=0.2.2",
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">= 3.9"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
2024-04-14 21:02:05 +02:00
|
|
|
[project.scripts]
|
2021-03-08 08:49:43 +01:00
|
|
|
csv-metadata-quality = 'csv_metadata_quality.__main__:main'
|
|
|
|
|
2024-05-23 08:41:08 +02:00
|
|
|
# So rye doesn't fall back to setuptools
|
|
|
|
# See: https://packaging.python.org/en/latest/tutorials/packaging-projects/#choosing-build-backend
|
2024-04-14 21:02:05 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
2024-04-14 21:02:05 +02:00
|
|
|
[tool.rye]
|
|
|
|
managed = true
|
|
|
|
dev-dependencies = [
|
|
|
|
"pytest>=8.0.2",
|
|
|
|
"pytest-clarity>=1.0.1",
|
|
|
|
"isort>=5.13.2",
|
|
|
|
"csvkit>=1.4.0",
|
|
|
|
"ipython>=8.22.1",
|
|
|
|
"fixit>=2.1.0",
|
|
|
|
"scalene>=1.5.35",
|
|
|
|
]
|
2022-11-28 15:11:18 +01:00
|
|
|
|
2024-04-14 21:02:05 +02:00
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["csv_metadata_quality"]
|
2022-12-20 14:03:10 +01:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length=88
|