-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (53 loc) · 2.13 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (53 loc) · 2.13 KB
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
55
56
57
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = fh.read()
VERSION = '0.1.0'
DESCRIPTION = 'Automated Microsoft Edge WebDriver manager for Selenium'
LONG_DESCRIPTION = (
'Automatically detects your Microsoft Edge browser version, downloads '
'the exact matching msedgedriver binary (win64, mac64, mac64 M1/ARM, linux64), '
'caches it under ~/.msedgedriver/, and returns its path for use with Selenium. '
'Supports version pinning, custom install paths, quiet mode, and cross-platform operation.'
)
# Setting up
setup(
name="msedgedriver",
version=VERSION,
author="estriadi (Aditya Maurya)",
author_email="estritech@gmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
python_requires=">=3.8",
install_requires=[],
url="https://github.com/estrizal/msedgedriver",
project_urls={
"Source Code": "https://github.com/estrizal/msedgedriver",
"Bug Tracker": "https://github.com/estrizal/msedgedriver/issues",
"PyPI": "https://pypi.org/project/msedgedriver/",
},
keywords=[
'python', 'selenium', 'edge driver', 'ms edge driver',
'webdriver manager', 'edge webdriver', 'selenium edge driver',
'microsoft edge', 'msedgedriver', 'edge automation',
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
]
)