-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 710 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 710 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
26
27
from setuptools import setup
setup(
name='lassh',
author='Steven Chun',
author_email='schunchicago@gmail.com',
description=("An open source, MIT-licensed command line tool for managing "
"per-project ssh configs."),
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/stevenrchun/lassh',
version='0.1.1',
license='LICENSE.txt',
packages=['lassh', 'lassh.test'],
install_requires=[
'Click',
'sshconf',
'setuptools',
'clint',
'pathlib'
],
entry_points={
'console_scripts': [
'lassh=lassh.lassh:lassh'
]
},
)