forked from antonjah/ssh-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 872 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
config = {
"keywords": "ssh menu interactive",
"author": "Anton Andersson",
"description": "A very simple interactive ssh profile menu",
"long_description": long_description,
"long_description_content_type": "text/markdown",
"url": "https://antonjah.github.io/ssh-menu/",
"download_url": "https://antonjah.github.io/ssh-menu/",
"author_email": "contact@antonandersson.se",
"version": "1.6.2.2",
"install_requires": ["bullet"],
"packages": ["sshmenu"],
"entry_points": {
"console_scripts": ['sshmenu = sshmenu.sshmenu:main']
},
"name": "ssh-menu",
"classifiers": [
"Programming Language :: Python :: 3.6",
],
}
setup(**config)