ryd-client/setup.py

30 lines
887 B
Python
Raw Normal View History

2021-12-29 13:00:41 +00:00
"""setup file with project metadata"""
2021-12-24 09:33:34 +00:00
import setuptools
2022-08-12 07:25:08 +00:00
with open("README.md", "r", encoding="utf-8") as fh:
2021-12-24 09:33:34 +00:00
long_description = fh.read()
setuptools.setup(
name="ryd-client",
2022-08-16 08:08:44 +00:00
version="0.0.6",
2021-12-24 09:33:34 +00:00
author="Simon",
author_email="simobilleter@gmail.com",
description="api client for returnyoutubedislike.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bbilly1/ryd-client",
project_urls={
"Bug Tracker": "https://github.com/bbilly1/ryd-client/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
2022-01-05 05:07:23 +00:00
package_dir={"ryd_client": "ryd_client"},
2022-01-05 04:49:08 +00:00
packages=setuptools.find_packages(),
2021-12-24 09:33:34 +00:00
python_requires=">=3.6",
2021-12-29 10:46:15 +00:00
install_requires=["requests"],
2021-12-24 09:33:34 +00:00
)