From 4fbe256109b77f2375843a0756e603d9920a58b2 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 25 Nov 2020 00:24:32 +0100 Subject: add pytest-cov --- setup.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7a39369 --- /dev/null +++ b/setup.py @@ -0,0 +1,50 @@ +import setuptools + +from fuzzycat import __version__ + +with open("README.md", "r") as fh: + long_description = fh.read() + + setuptools.setup( + name="fuzzycat", + version=__version__, + author="Martin Czygan", + author_email="martin@archive.org", + description="Fuzzy matching utilities for scholarly metadata", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/miku/fuzzycat", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires=">=3.5", + zip_safe=False, + entry_points={"console_scripts": [ + "fuzzycat=fuzzycat.main:main" + ]}, + install_requires=[ + "elasticsearch>=7", + "ftfy", + "fuzzy", + "pydantic", + "toml", + "unidecode>=0.10", + # "fatcat-openapi-client", + # "simhash", + ], + extras_require={"dev": [ + "ipython", + "isort", + "jupyter", + "matplotlib", + "pandas", + "pylint", + "pytest", + "pytest-cov", + "twine", + "yapf", + ],}, + ) -- cgit v1.2.3