-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (43 loc) · 1.43 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from os.path import abspath, dirname, join
try:
from setuptools import setup
except ImportError as error:
from distutils.core import setup
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, 'src', 'ZeepLibrary', 'version.py')) as f:
exec(f.read())
VERSION = get_version()
DESCRIPTION = """
Web service testing library for Robot Framework with modern SOAP client.
"""[1:-1]
CLASSIFIERS = """
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(name='robotframework-zeep',
version=VERSION,
description='Web service testing library for Robot Framework',
long_description=DESCRIPTION,
author='Dawid Rycerz',
author_email='[email protected]',
url='https://github.com/knightdave/robotframework-zeep',
license='GPLv3+',
keywords='robotframework testing test automation soap client zeep suds',
platforms='any',
classifiers=CLASSIFIERS.splitlines(),
package_dir={'': 'src'},
packages=['ZeepLibrary'],
package_data={'ZeepLibrary': ['tests/*.robot']},
install_requires=[
'robotframework',
'zeep'
],
)
""" From now on use this approach
python setup.py sdist upload
git tag -a 1.2.3 -m 'version 1.2.3'
git push --tags"""