2019-07-31 16:34:36 +02:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
install_requires = [
|
2020-01-15 10:41:31 +01:00
|
|
|
"pandas",
|
|
|
|
"python-stdnum",
|
|
|
|
"requests",
|
|
|
|
"requests-cache",
|
|
|
|
"pycountry",
|
|
|
|
"langid",
|
2019-07-31 16:34:36 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="csv-metadata-quality",
|
2023-02-23 11:46:56 +01:00
|
|
|
version="0.6.1",
|
2019-07-31 16:34:36 +02:00
|
|
|
author="Alan Orth",
|
|
|
|
author_email="aorth@mjanja.ch",
|
2019-07-31 16:42:27 +02:00
|
|
|
description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem.",
|
2019-07-31 16:34:36 +02:00
|
|
|
license="GPLv3",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/alanorth/csv-metadata-quality",
|
|
|
|
classifiers=[
|
2020-12-14 22:44:35 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-01-29 14:07:47 +01:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2023-05-29 20:32:59 +02:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2019-07-31 16:34:36 +02:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2020-01-15 10:41:31 +01:00
|
|
|
packages=["csv_metadata_quality"],
|
2019-07-31 16:34:36 +02:00
|
|
|
entry_points={
|
2020-01-15 10:41:31 +01:00
|
|
|
"console_scripts": ["csv-metadata-quality = csv_metadata_quality.__main__:main"]
|
2019-07-31 16:34:36 +02:00
|
|
|
},
|
2023-04-05 14:24:35 +02:00
|
|
|
include_package_data=True,
|
2020-01-15 10:41:31 +01:00
|
|
|
install_requires=install_requires,
|
2019-07-31 16:34:36 +02:00
|
|
|
)
|