forked from MarketSquare/webdrivermanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (60 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- coding: utf-8 -*-
from codecs import open
from os.path import join, abspath, dirname
from setuptools import setup
import versioneer
CWD = abspath(dirname(__file__))
PACKAGE_NAME = "webdrivermanager"
# Get the long description from the README file
with open(join(CWD, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
# Get version
CWD = abspath(dirname(__file__))
with open(join(CWD, "requirements.txt"), encoding="utf-8") as f:
REQUIREMENTS = f.read().splitlines()
CLASSIFIERS = """
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Utilities
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Operating System :: POSIX :: Other
""".strip().splitlines()
setup(
name=PACKAGE_NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Module for facilitating download and deploy of WebDriver binaries.",
long_description=long_description,
classifiers=CLASSIFIERS,
url="https://github.com/rasjani/webdrivermanager",
author="Jani Mikkonen",
author_email="[email protected]",
license="MIT",
packages=[PACKAGE_NAME],
package_dir={"": "src"},
install_requires=REQUIREMENTS,
include_package_data=True,
platforms="any",
keywords="webdriver chromedriver geckodriver edgechromiumdriver selenium",
zip_safe=False,
entry_points={
"console_scripts": [
"webdrivermanager = webdrivermanager.__main__:main",
],
},
)