forked from lenosi/iqa-one
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.01 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
# -*- 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', 'flake8'],
tests_require=[
'pytest',
'pytest-docker',
"pytest-cov",
'pytest-asyncio',
'mock',
'pytest-mock',
'nest_asyncio',
'tox',
"codecov",
"asynctest",
"freezegun",
"mypy",
"aiofiles",
"uvloop",
],
install_require=[
'asyncssh'
'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]'
)