forked from dyuri/xontrib-ssh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1022 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
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
try:
with open('README.md') as fh:
LONG_DESC = fh.read()
except (IOError, OSError):
LONG_DESC = ''
setup(
name="xontrib-ssh-agent",
version='1.0.12',
url='https://github.com/dyuri/xontrib-ssh-agent',
license='MIT',
author='Gyuri Horák',
author_email='[email protected]',
description='SSH agent integration for xonsh',
install_requires=[
'repassh>=1.0.4',
],
long_description=LONG_DESC,
long_description_content_type='text/markdown',
packages=['xontrib'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.xsh']},
platforms='any',
data_files=[("", ["LICENSE.txt"])],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Desktop Environment',
'Topic :: System :: Shells',
'Topic :: System :: System Shells',
]
)