forked from mmeyer724/sshmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 805 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
from setuptools import setup
with open('requirements.txt') as requirements_file:
required = requirements_file.read().splitlines()
setup(
name='sshmenu',
version='0.0.4',
license='MIT',
description='Command line SSH menu and helper utility',
long_description=open('README.rst').read(),
author='Michael Meyer',
author_email='[email protected]',
url='https://github.com/mmeyer724/sshmenu',
packages=['sshmenu'],
install_requires=required,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': ['sshmenu=sshmenu.sshmenu:main']
}
)