forked from haarcuba/ssh-agent-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 765 Bytes
/
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
from setuptools import setup, find_packages
README = 'set up a working ssh-agent and add keys for any subprocesses you want to run'
requires = []
setup(name='ssh-agent-setup',
version='1.0.1',
description=README,
long_description=README,
url='https://github.com/haarcuba/ssh-agent-setup',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
],
author='Yoav Kleinberger',
author_email='[email protected]',
packages=find_packages(),
keywords='SSH, SSH Agent, ssh-agent',
entry_points = {},
zip_safe=False,
install_requires=requires,
)