-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.49 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 setuptools
from EggplantLibrary.version import VERSION
long_description = """
The Eggplant Library for [Robot Framework](https://robotframework.org/) allows calling
[eggPlant Functional](https://www.eggplantsoftware.com/eggplant-functional-downloads) scripts via XML RPC
using [eggDrive](http://docs.testplant.com/ePF/using/epf-about-eggdrive.htm).
It considers **eggPlant scripts as low level keywords** and exposes them for usage in **high level keywords and test cases in Robot Framework**.
So the scripts themselves have to be created in eggPlant, not in Robot Framework.
The eggPlant itself should be launched in eggDrive mode from outside.
See the [Eggplant Library homepage](https://github.com/amochin/robotframework-eggplant) for more information.
"""
setuptools.setup(
name="robotframework-eggplantlibrary",
version=VERSION,
author="Andrei Mochinin",
description="Robot Framework eggPlant Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/amochin/robotframework-eggplant",
license = 'Apache License 2.0',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: Apache Software License",
"Framework :: Robot Framework :: Library",
],
install_requires=[
'robotframework',
'Pillow',
],
python_requires='>=3.9',
)