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" }
|
|
|
|
]
|
2024-05-23 08:44:16 +02:00
|
|
|
license= { file = "LICENSE.txt" }
|
2024-04-14 21:02:05 +02:00
|
|
|
dependencies = [
|
2024-05-23 09:01:46 +02:00
|
|
|
"pandas[feather,performance]~=2.2",
|
2024-06-18 21:17:38 +02:00
|
|
|
"python-stdnum~=1.20",
|
|
|
|
"requests~=2.32",
|
|
|
|
"requests-cache~=1.2.1",
|
2024-05-23 09:01:46 +02:00
|
|
|
"colorama~=0.4",
|
2024-06-18 21:17:38 +02:00
|
|
|
"ftfy~=6.2.0",
|
2024-05-23 09:01:46 +02:00
|
|
|
"country-converter~=1.2",
|
2024-06-18 21:17:38 +02:00
|
|
|
"pycountry~=24.6.1",
|
2024-06-18 20:51:32 +02:00
|
|
|
"py3langid~=0.3",
|
2024-04-14 21:02:05 +02:00
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">= 3.9"
|
2020-05-31 16:31:36 +02:00
|
|
|
|
2024-05-23 08:44:16 +02:00
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
repository = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
homepage = "https://github.com/ilri/csv-metadata-quality"
|
|
|
|
|
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 = [
|
2024-08-21 16:41:36 +02:00
|
|
|
"pytest~=8.3",
|
2024-05-23 09:01:46 +02:00
|
|
|
"pytest-clarity~=1.0",
|
|
|
|
"isort~=5.13",
|
2024-08-21 16:41:36 +02:00
|
|
|
"csvkit~=2.0",
|
|
|
|
"ipython~=8.26",
|
2024-04-14 21:02:05 +02:00
|
|
|
]
|
2022-11-28 15:11:18 +01:00
|
|
|
|
2024-05-23 08:42:11 +02:00
|
|
|
# So hatch doesn't try to build other top-level directories like "data"
|
2024-04-14 21:02:05 +02:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["csv_metadata_quality"]
|
2022-12-20 14:03:10 +01:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length=88
|