-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
85 lines (71 loc) · 2.89 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
85
"""Bladerunner's setup.py."""
import io
import re
from setuptools import setup
from setuptools.command.test import test as TestCommand
def find_version(filename):
"""Uses re to pull out the assigned value to __version__ in filename."""
with io.open(filename, encoding="utf-8") as version_file:
version_match = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]',
version_file.read(), re.M)
if version_match:
return version_match.group(1)
return "0.0-version-unknown"
class PyTest(TestCommand):
"""Shim in pytest to be able to use it with setup.py test."""
def finalize_options(self):
"""Stolen from http://pytest.org/latest/goodpractises.html."""
TestCommand.finalize_options(self)
self.test_args = ["-v", "-rf", "--cov-report", "term-missing", "--cov",
"bladerunner", "test"]
self.test_suite = True
def run_tests(self):
"""Also shamelessly stolen."""
# have to import here, outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
raise SystemExit(errno)
setup(
name="bladerunner",
version=find_version("bladerunner/__init__.py"),
author="Adam Talsma",
author_email="[email protected]",
packages=["bladerunner"],
install_requires=["pexpect >= 3.3", "futures"],
entry_points={
'console_scripts': [
'bladerunner = bladerunner.cmdline:main',
]
},
url="https://github.com/Demonware/bladerunner",
description="Execution of commands on hosts",
long_description=(
"Bladerunner provides an easy to use interface to quickly audit or "
"push changes to a multitude of hosts. It uses pexpect, so pattern "
"matching is at its heart. Be aware of returning to a shell prompt "
"after every command executed. Several options are available for "
"custom networking and host setups."
),
download_url="https://github.com/Demonware/bladerunner",
tests_require=["pytest", "pytest-cov", "mock", "tornado"],
cmdclass={"test": PyTest},
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: System :: Clustering",
"Topic :: System :: Systems Administration",
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)