mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2025-07-04 05:23:25 +02:00
uv's build backend expects our module to be in src. See: https://docs.astral.sh/uv/concepts/build-backend/#modules
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[project]
|
|
name = "csv-metadata-quality"
|
|
version = "0.7.0"
|
|
description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem."
|
|
authors = [
|
|
{ name = "Alan Orth", email = "alan.orth@gmail.com" }
|
|
]
|
|
license= { file = "LICENSE.txt" }
|
|
dependencies = [
|
|
"pandas[feather,performance]~=2.2.3",
|
|
"python-stdnum~=1.20",
|
|
"requests~=2.32.3",
|
|
"requests-cache~=1.2.1",
|
|
"colorama~=0.4",
|
|
"ftfy~=6.3.0",
|
|
"country-converter~=1.3",
|
|
"pycountry~=24.6.1",
|
|
"py3langid~=0.3",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.10"
|
|
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
]
|
|
|
|
[project.urls]
|
|
repository = "https://github.com/ilri/csv-metadata-quality"
|
|
homepage = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
[project.scripts]
|
|
csv-metadata-quality = 'csv_metadata_quality.__main__:main'
|
|
|
|
# See: https://docs.astral.sh/uv/concepts/build-backend/
|
|
[build-system]
|
|
requires = ["uv_build>=0.7.19,<0.8.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest~=8.3",
|
|
"isort~=6.0",
|
|
"csvkit~=2.0",
|
|
"ipython~=8.31",
|
|
]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length=88
|