-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathsetup.py
35 lines (32 loc) · 1.27 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
#!/usr/bin/env python
import os
from setuptools import setup, 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="2.4.0",
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://pabot.org",
download_url="https://pypi.python.org/pypi/robotframework-pabot",
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
],
entry_points={"console_scripts": ["pabot=pabot.pabot:main"]},
license="Apache License, Version 2.0",
install_requires=["robotframework>=3.2", "robotframework-stacktrace>=0.4.1"],
python_requires=">=3.6",
include_package_data=True,
)