-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (42 loc) · 1.59 KB
/
setup.py
File metadata and controls
50 lines (42 loc) · 1.59 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
'''
Created on 2015/12/10
Author: by wang_yang1980@hotmail.com
'''
from setuptools import setup
from os.path import abspath, dirname, join
with open(join(dirname(abspath(__file__)), 'target', 'src', 'SikuliLibrary', 'version.py')) as f:
exec(f.read())
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
DESCRIPTION = "Sikuli Robot Framework Library provide keywords for Robot Framework to test UI through Sikuli."
setup_kwargs = {
"name": "robotframework-SikuliLibrary",
"version": VERSION,
"description": DESCRIPTION,
"long_description": long_description,
"long_description_content_type": "text/markdown",
"author": "Wang Yang",
"author_email": "wang_yang1980@hotmail.com",
"maintainer": "Hélio Guilherme",
"maintainer_email": "helioxentric@gmail.com",
"url": "https://github.com/MarketSquare/robotframework-SikuliLibrary",
"license": "Apache-2.0",
"keywords": "robotframework testing testautomation sikuli UI",
"platforms": "any",
"package_dir": {"" : "target/src"},
"packages": ["SikuliLibrary"],
"package_data": {"SikuliLibrary": ["lib/*.jar",]},
"python_requires": ">=3.8,<4.0",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Java",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
],
"include_package_data": True
}
setup(**setup_kwargs)