-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (27 loc) · 999 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import find_packages, setup # type: ignore
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="quote",
version="3.0",
author="Max Humber",
author_email="max.humber@gmail.com",
description="A wrapper for the Goodreads Quote API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/maxhumber/quote",
packages=find_packages(),
package_data={"quote": ["py.typed"]},
install_requires=["gazpacho>=1.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
keywords=["quote", "quotes", "goodreads", "wrapper", "api"],
entry_points={"console_scripts": ["quote=quote.cli:cli"]},
python_requires=">=3.7",
setup_requires=["setuptools>=38.6.0"],
zip_safe=False,
)