forked from lenosi/iqa-one
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 764 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
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
from setuptools import setup, find_packages
setup(
name='iqa-one',
version='0.1.2',
packages=find_packages('src'),
package_dir={'': 'src'},
license='Apache 2.0',
description='Messaging testing project',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'mock', 'pytest-mock', 'tox', 'flake8'],
install_require=[
'requests',
'PyYAML',
'cython',
'ansible',
'python-qpid-proton',
'amqcfg',
'dpath',
'optconstruct',
'docker',
'urllib3',
'kubernetes'
],
url='https://github.com/enkeys/iqa-one',
author='Dominik Lenoch',
author_email='[email protected]'
)