-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 1.11 KB
/
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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "missh",
version = "0.3.0",
# packages = find_packages(), #["mipass","missh-nox"],
py_modules = ["mipass","mipexpect"],
scripts = ['missh'],
install_requires = ["npyscreen >=2.0pre47", "pycrypto >=2.4.0", "python-daemon >=1.5.5", "pexpect >=2.3"],
description = "Minimalist Session Manager for SSH/SFTP",
# long_description = "A minimalist session manager for Linux/OSX ssh users",
author = "Lenx Wei",
author_email = "[email protected]",
license = "BSD",
keywords = "ssh session manager",
platforms = "Independant",
url = "https://github.com/LenxWei/MiSSH",
classifiers=[
# Reference: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Environment :: Console :: Curses",
"Operating System :: POSIX",
"Programming Language :: Python",
"Intended Audience :: End Users/Desktop",
"Topic :: Internet",
],
)