forked from mkorpela/pabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.38 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
#!/usr/bin/env python
from distutils.core import setup
import os
from setuptools import find_packages
name = 'Mikko Korpela'
# I might be just a little bit too much afraid of those bots..
address = name.lower().replace(' ', '.')+chr(64)+'gmail.com'
setup(name='robotframework-pabot',
version='0.44',
description='Parallel test runner for Robot Framework',
long_description='A parallel executor for Robot Framework tests.'
'With Pabot you can split one execution into multiple and save test execution time.',
author=name,
author_email=address,
url='https://github.com/mkorpela/pabot',
download_url='https://pypi.python.org/pypi/robotframework-pabot',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Framework :: Robot Framework'
],
scripts=[os.path.join('scripts', 'pabot'),
os.path.join('scripts', 'pabot.bat')],
license='Apache License, Version 2.0',
install_requires=['robotframework', 'robotremoteserver>=1.1'])