-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
45 lines (42 loc) · 1.38 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
39
40
41
42
43
44
45
import setuptools, os
readme_path = 'README.md'
if os.path.exists(readme_path):
with open(readme_path, 'r') as f:
long_description = f.read()
else:
long_description = 'selenium_youtube'
setuptools.setup(
name='selenium_youtube',
version='2.0.31',
author="Kovács Kristóf-Attila & Péntek Zsolt",
description='selenium_youtube',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/kkristof200/selenium_youtube",
packages=setuptools.find_packages(),
install_requires=[
'beautifulsoup4>=4.10.0',
'kcu>=0.0.73',
'kstopit>=0.0.16',
'kyoutubescraper>=0.0.2',
'noraise>=0.0.16',
'selenium>=4.0.0',
'selenium-browser>=0.0.12',
'selenium-chrome>=0.0.29',
'selenium-firefox>=2.0.8',
'selenium-uploader-account>=0.2.3',
'setuptools>=67.8.0',
'xpath-utils>=0.0.3'
],
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.4'
)