-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.02 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
29
30
31
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setup(
name="y2mate",
version="1.0.0",
description="An unofficial API wrapper for Y2Mate.com",
long_description=long_description,
long_description_content_type="text/markdown",
author="Zrekryu",
author_email="zrekryu@gmail.com",
url="https://github.com/zrekryu/y2mate",
keywords=["y2mate", "y2mate-api", "youtube"],
packages=find_packages(),
install_requires=[
"httpx"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
]
)