-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.03 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
from setuptools import setup, find_packages
from sys import platform, exit
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
if 'win' not in platform:
print('Only for windows!')
exit()
setup(
name='ytty',
version='1.0.3',
author='Maehdakvan',
author_email='visitanimation@google.com',
description='Ytty - Powerful tool for parsing, downloading and uploading videos from youtube based on selenium.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DedInc/ytty',
project_urls={
'Bug Tracker': 'https://github.com/DedInc/ytty/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=find_packages(),
include_package_data=True,
install_requires=['vidspinner', 'pyperclip', 'undetected-chromedriver', 'requests', 'keyboard', 'pythread'],
python_requires='>=3.6'
)