forked from netzulo/qalab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
84 lines (76 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- coding: utf-8 -*-
"""TODO: doc module"""
from os import path
import sys
from setuptools import setup, find_packages
VERSION = '0.1.2'
CURR_PATH = path.abspath(path.dirname(__file__))
# make works script on windows
sys.path.append(path.join(CURR_PATH, 'qalab'))
def readme():
"""Read file on rootpath, README.rst"""
with open('README.rst') as fil:
return fil.read()
setup(name='qalaboratory',
version=VERSION,
packages=find_packages(exclude=['tests']),
description='QALAB, proyect manager for QA open source proyects',
long_description=readme(),
author='Netzulo Open Source',
author_email='netzuleando@gmail.com',
url='https://github.com/netzulo/qalab',
download_url='https://github.com/netzulo/qalab/tarball/v{}'.format(
VERSION),
install_requires=[
'appdirs',
'packaging==16.8',
'pyparsing',
'six==1.10.0',
'nose==1.3.7',
'nose-testconfig==0.10',
'wget',
'pytest'
],
setup_requires=[
'pytest-runner',
'tox',
],
tests_require=[
'pytest-html',
'pytest-dependency',
'pytest-cov',
],
scripts=['qalab/qaenv.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
keywords=[
'testing',
'logging',
'functional',
'selenium',
'test',
'installer',
'hub',
'node',
'qa',
'driver',
'chrome',
'firefox',
'phantomjs',
'iexplorer',
'edge',
'appium',
'mobile',
'selendroid',
'automation',
'pytest'
])