-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
36 lines (34 loc) · 1.15 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
34
35
36
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='reverse-ssh-manager',
version='1.2',
description='reverse-ssh-manager allows to manage reverse ssh connections '
'through a web application',
long_description=open('README.rst').read(),
license='MIT',
author='Bruno Binet',
author_email='[email protected]',
keywords=['ssh', 'tunnel', 'reverse', 'manage', 'web', 'application'],
url='https://github.com/bbinet/reverse-ssh-manager',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
'License :: OSI Approved :: MIT License',
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
entry_points={
'console_scripts': ['reverse-ssh-manager=rsm.server:run']
},
packages=find_packages(),
include_package_data=True,
install_requires=[
'bottle',
'psutil',
],
)