54 строки
2.0 KiB
Python
54 строки
2.0 KiB
Python
# Copyright 2020 Microsoft
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from os.path import dirname, join, abspath
|
|
from setuptools import setup
|
|
|
|
with open(join(abspath(dirname(__file__)), 'README.md'), 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name = 'msedge-selenium-tools',
|
|
version = '3.141.4',
|
|
description = 'An updated EdgeDriver implementation for Selenium 3 with newly-added support for Microsoft Edge (Chromium).',
|
|
long_description = long_description,
|
|
long_description_content_type = 'text/markdown',
|
|
url = 'https://github.com/microsoft/edge-selenium-tools',
|
|
author = 'Microsoft Corporation',
|
|
author_email = 'EdgeDevToolsOSS@microsoft.com',
|
|
license = 'Apache 2.0',
|
|
packages = [
|
|
'msedge',
|
|
'msedge.selenium_tools'
|
|
],
|
|
install_requires = [
|
|
'selenium==3.141'
|
|
],
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Operating System :: POSIX',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Operating System :: MacOS :: MacOS X',
|
|
'Topic :: Software Development :: Testing',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6'
|
|
],
|
|
zip_safe = False
|
|
) |