1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-11-17 19:47:03 +01:00

pyproject.toml: Add csv-metadata-quality as a script
All checks were successful
continuous-integration/drone/push Build is passing

For some reason I stopped having csv-metadata-quality available in
my poetry environment after install. It seems I need to add it as a
poetry tool script? I had already done this in setup.py years ago,
which works for regular python setup.py installs, but hadn't needed
to do it in poetry for a year or more that I've been using it, until
now.
This commit is contained in:
Alan Orth 2021-03-08 09:49:43 +02:00
parent 202bda862a
commit b16fa9121f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -7,6 +7,9 @@ license="GPL-3.0-only"
repository = "https://github.com/ilri/csv-metadata-quality" repository = "https://github.com/ilri/csv-metadata-quality"
homepage = "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] [tool.poetry.dependencies]
python = "^3.8" python = "^3.8"
pandas = "^1.0.4" pandas = "^1.0.4"