-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (30 loc) · 1.19 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
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, "README.rst")) as f:
long_description = f.read()
classifiers = ["License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python"] \
+ [("Programming Language :: Python :: %s" % x) for x in "3.7 3.8 3.9".split()]
def main():
setup(
name="easyium",
description="easy use of selenium and appium",
long_description=long_description,
install_requires=['selenium==4.1.0', 'appium-python-client==2.1.1'],
version="2.0.0",
keywords="selenium appium test testing framework automation",
author="Karl Gong",
author_email="[email protected]",
url="https://github.com/KarlGong/easyium-python",
license="Apache",
classifiers=classifiers,
packages=["easyium"],
zip_safe=False,
)
if __name__ == "__main__":
main()