forked from yst8493182/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.03 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.03 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
import setuptools
from src.testproject import definitions
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="testproject-python-sdk",
version=definitions.get_sdk_version(),
author="TestProject",
author_email="contact@testproject.io",
description="Selenium and Appium powered SDK for TestProject.io",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/testproject-io/python-opensdk",
packages=setuptools.find_packages(exclude=["tests", "tests.*", "proxy_examples", "proxy_examples.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"selenium==3.141.0",
"Appium-Python-Client>=1.0.1,<=1.0.2",
"decorator>=4.4.2",
"requests>=2.24.0",
"importlib-metadata>=1.7.0",
"packaging>=20.4",
],
)