-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (16 loc) · 831 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from ExtendedMainframe3270.version import VERSION
from setuptools import setup
setup(name = 'robotframework-mainframe3270-extended',
version = VERSION,
description = 'Extended Mainframe Test library for Robot Framework based on Altran\'s library',
long_description = 'Test library for Robot Framework to enable to create automated test scripts to test IBM Mainframe 3270',
author = 'tom bsc',
author_email = '[email protected]',
license = 'MIT License',
url = 'https://github.com/otemek/robotframework-mainframe3270',
packages = ['ExtendedMainframe3270'],
package_data = {'ExtendedMainframe3270': []},
requires = ['robotframework', 'six', 'imgkit'],
python_requires = '>=3'
)