-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
26 lines (21 loc) · 948 Bytes
/
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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname, join
try:
from setuptools import setup
except ImportError as error:
from distutils.core import setup
version_file = join(dirname(abspath(__file__)), 'SoapLibrary', 'version.py')
with open(version_file) as file:
code = compile(file.read(), version_file, 'exec')
exec(code)
setup(name = 'robotframework-soaplibrary',
version = '1.3',
description = 'SOAP Library for Robot Framework',
long_description = 'Test library for Robot Framework to create automated test like using SOAPUI',
author = 'Altran Portugal',
author_email = '[email protected]',
license = 'MIT License',
url = 'https://github.com/Altran-PT-GDC/Robot-Framework-SOAP-Library',
packages = ['SoapLibrary'],
install_requires = ['robotframework', 'zeep', 'requests', 'urllib3']
)