mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-04 21:43:00 +01:00
Alan Orth
8ee5e2e306
All checks were successful
continuous-integration/drone/push Build is passing
I have been using Python 3.10 for months, and already added it to the CI builds.
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
install_requires = [
|
|
"pandas",
|
|
"python-stdnum",
|
|
"requests",
|
|
"requests-cache",
|
|
"pycountry",
|
|
"langid",
|
|
]
|
|
|
|
setuptools.setup(
|
|
name="csv-metadata-quality",
|
|
version="0.6.0-dev",
|
|
author="Alan Orth",
|
|
author_email="aorth@mjanja.ch",
|
|
description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem.",
|
|
license="GPLv3",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/alanorth/csv-metadata-quality",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
packages=["csv_metadata_quality"],
|
|
entry_points={
|
|
"console_scripts": ["csv-metadata-quality = csv_metadata_quality.__main__:main"]
|
|
},
|
|
install_requires=install_requires,
|
|
)
|