-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.13 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.13 KB
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
from setuptools import setup, find_packages
setup(
name='zenquotespy',
version='1.0.0',
description='ZenquotesPy is a lightweight Python package that provides easy access to motivational and inspirational quotes from the ZenQuotes.io API.',
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author='Nilay Sarma',
packages=find_packages(),
install_requires=['requests==2.32.3'],
license="MIT",
url="https://zenquotespy.pages.dev",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Documentation": "https://zenquotespy.pages.dev/getting-started",
"Repository": "https://github.com/nilaysarma/zenquotespy",
"Release Notes": "https://github.com/nilaysarma/zenquotespy/releases/latest",
}
)