-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (35 loc) · 1.29 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
# -*- coding: utf-8 -*-
# Copyright (c) 2017 SoftBank Robotics Europe. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
pip package setup
"""
from setuptools import setup, find_packages
from wooqi import __version__
# For development purposes, install it with pip install -user -e
# or python setup.py develop
def get_long_description():
"""Return readme description"""
with open('README.md') as fp:
return fp.read()
setup(
version=__version__,
name="wooqi",
description="Pytest plugin allowing to parametrize all the test sequence "
"thanks to a config file",
long_description=get_long_description(),
long_description_content_type='text/markdown',
packages=find_packages(),
license='BSD-3',
url="https://github.com/aldebaran/wooqi",
download_url="https://pypi.org/project/wooqi/",
entry_points={
'pytest11': [
'wooqi = wooqi.plugin'], 'console_scripts': ['wooqi = wooqi.__main__:main']},
include_package_data=True,
install_requires=["pytest==3.0.5", "pytest-rerunfailures==1.0.1",
"pytest-timeout==1.0.0", "pytest-spec==1.0.1", "configparser"],
setup_requires=["pytest-runner"],
test_require=["pytest"],
)