-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (45 loc) · 1.44 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
from setuptools import setup, find_packages
from setuptools.command.test import test
class Tox(test):
def finalize_options(self):
test.finalize_options(self)
self.test_args = ["-v", "-epy"]
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import tox
tox.cmdline(self.test_args)
setup(
name='boosh',
version='0.1.0.dev1',
description='SSH to your your private EC2 instances by ID',
packages=find_packages(),
install_requires=[
'botocore>=0.94.0',
],
entry_points={
'console_scripts': [
'boosh_proxy = boosh.ssh:main',
],
},
tests_require=['tox'],
cmdclass={'test': Tox},
author='Paul Handly',
author_email='ph@betaworks.com',
url='https://github.com/betaworks/boosh',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Utilities',
],
keywords=['ec2', 'ssh', 'shell', 'aws', 'bastion', 'firewall', 'proxy'],
)