forked from ianepperson/telnetsrvlib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 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
34
35
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = "telnetsrv",
packages = ["telnetsrv"],
version = "0.5b1",
extras_require = {
'green': ['gevent'],
'ssh': ['paramiko'],
},
description = "Telnet server handler library",
long_description = readme(),
author = "Ian Epperson",
author_email = "[email protected]",
url = "https://github.com/ianepperson/telnetsrvlib",
keywords = ["gevent", "telnet", "server"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
"Topic :: Communications :: BBS",
"Topic :: System :: Shells",
"Topic :: Terminals",
"Topic :: Terminals :: Telnet",
],
)