diff options
| author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-25 00:24:32 +0100 |
|---|---|---|
| committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-25 00:24:32 +0100 |
| commit | 4fbe256109b77f2375843a0756e603d9920a58b2 (patch) | |
| tree | e22d9487bb05eed9ee90e98cc8d412d31d8e56d1 /setup.py | |
| parent | fabf1ae497088981cc54a6a53f9a7784a5cc1d20 (diff) | |
| download | fuzzycat-4fbe256109b77f2375843a0756e603d9920a58b2.tar.gz fuzzycat-4fbe256109b77f2375843a0756e603d9920a58b2.zip | |
add pytest-cov
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 50 |
1 files changed, 50 insertions, 0 deletions
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", + ],}, + ) |
