-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 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
import pathlib
from os.path import abspath, dirname, join
from setuptools import setup
CURDIR = dirname(abspath(__file__))
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.rst").read_text()
with open(join(CURDIR, 'requirements.txt')) as f:
REQUIREMENTS = f.read().splitlines()
setup(
name="robotframework-appiumimage",
version="0.1.0",
author="AI Driven ST Foundation",
author_email="[email protected]",
description="robot framework library that contains a set of functions for visual testing",
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/aidrivenst/iSeeLibrary",
classifiers=[
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
packages=["AppiumImagePlugin"],
include_package_data=True,
#install_requires=REQUIREMENTS,
python_requires=">=3.6"
)