-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
38 lines (34 loc) · 1.27 KB
/
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
32
33
34
35
36
37
38
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name='aiotube',
version='1.7.3',
description='A library to access YouTube Public Data without YouTubeAPI',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/jnsougata/aiotube',
author='Sougata Jana',
author_email='jnsougata@gmail.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
packages=['aiotube'],
keywords='youtube, youtube-data, youtube-api, youtube-data-api-v3',
python_requires='>=3.8.0',
install_requires=['urllib3'],
project_urls={
'Documentation': 'https://aiotube.readthedocs.io/en/latest/',
'Source': 'https://github.com/jnsougata/aiotube'
},
)