forked from rohitkhatri/youtube-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 899 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
long_description = open('README.md').read()
except IOError:
long_description = ""
setup(
name='youtube-python-async',
version='1.0.2',
description='Python Youtube Data API v3 - Asynchronous',
long_description=long_description,
url='https://github.com/economy/youtube-python-async',
author='economy',
author_email='[email protected]',
license='GPL',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.9',
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords="youtube data api python v3 async",
packages=['youtube_async']
)