-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (49 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
]
keywords = ['chromedriver', 'operadriver',
'edgedriver', 'safaridriver',
'selenium', 'seleniumdriver',
'chromedriver-binary', 'selenium-binary',
'selenium-python', 'selenium-driver',
'geckodriver', 'geckodriver-binary',
'operadriver-binary', 'edgedriver-binary',
'safaridriver-binary', 'chromebrowser', 'chrome-browser', 'firefox',
'firefox-browser', 'selenium-update', 'selenium-updater', 'updater']
packages = ['selenium_driver_updater',
'selenium_driver_updater/util',
'selenium_driver_updater/browsers']
setup(
name='selenium_driver_updater',
version='7.0.0',
description='Download or update your Selenium driver binaries and their browsers automatically with this package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Svinokur/selenium_driver_updater',
author='Stanislav Vinokur',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=keywords,
packages=packages,
install_requires=['wget', 'requests', 'selenium', 'beautifulsoup4', 'packaging'],
entry_points={
"console_scripts": [
"selenium_driver_updater = selenium_driver_updater.consoleUpdater:ConsoleUpdater.install",
"selenium-driver-updater = selenium_driver_updater.consoleUpdater:ConsoleUpdater.install",
"selupd = selenium_driver_updater.consoleUpdater:ConsoleUpdater.install",
],
},
)