-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
30 lines (27 loc) · 991 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
import setuptools
required = ["js2py", "aiohttp", "pyquery", "aiofiles"]
long_description = open('README.md').read()
setuptools.setup(
name='ytstudio',
version='1.5.2',
description='Unofficial API for Youtube Studio.',
long_description=long_description,
author='Yusuf Usta',
maintainer='Yusuf Usta',
url='https://github.com/yusufusta/ytstudio',
license='GPL3',
packages=['ytstudio'],
install_requires=required,
keywords=['youtube', 'youtube-studio', 'ytstudio', 'studio'],
long_description_content_type="text/markdown",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
)