forked from bot-jonas/youtube-community-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 649 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r") as f:
long_description = f.read()
setup(
name="youtube_community_tab",
version="0.2.3.2.1",
description="A python3 module to handle YouTube Community Tab",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/bot-jonas/youtube-community-tab",
package_dir={"": "src"},
install_requires=[
"requests_cache",
],
packages=find_packages(where="src"),
zip_safe=False,
)