-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 698 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 698 Bytes
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
from setuptools import setup
tests_require = []
try:
import unittest.mock
except ImportError:
tests_require = ['mock']
setup(
name = 'ssh_forward_proxy',
version = '0.1',
description = 'SSH proxy server to allow clients access to a SSH remote using the credentials of the proxy, instead of the client.',
url = 'https://github.com/lincheney/ssh-forward-proxy',
author = 'Cheney Lin',
author_email = 'lincheney@gmail.com',
packages = ['ssh_forward_proxy'],
scripts = ['bin/ssh-forward-proxy.py'],
package_data = {'ssh_forward_proxy': ['server-key']},
install_requires = ['paramiko'],
tests_require = tests_require,
test_suite = "tests",
)