-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (25 loc) · 808 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
30
31
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ytpy",
version="2021.8.17",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
"asyncio",
"aiohttp",
"urllib3"
],
package_data={
},
# metadata to display on PyPI
author="yeogaa",
author_email="yeogaa02@gmail.com",
description="Python asynchronous wrapper to get youtube data.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="youtube-api-v3 python youtube-search asynchronous",
url="https://github.com/madeyoga/ytpy",
)