forked from jquast/telnetlib3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.65 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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
"""Setuptools distribution file."""
import os
import platform
from setuptools import setup
def _get_here(fname):
return os.path.join(os.path.dirname(__file__), fname)
def _get_long_description(fname, encoding='utf8'):
return open(fname, 'r', encoding=encoding).read()
setup(name='telnetlib3',
# keep in sync w/docs/conf.py manually for now, please!
version='1.0.4',
url='http://telnetlib3.rtfd.org/',
license='ISC',
author='Jeff Quast',
description="Python 3 asyncio Telnet server and client Protocol library",
long_description=_get_long_description(fname=_get_here('README.rst')),
packages=['telnetlib3'],
package_data={'': ['README.rst', 'requirements.txt'], },
entry_points={
'console_scripts': [
'telnetlib3-server = telnetlib3.server:main',
'telnetlib3-client = telnetlib3.client:main'
]},
author_email='[email protected]',
platforms='any',
zip_safe=True,
keywords=', '.join(('telnet', 'server', 'client', 'bbs', 'mud', 'utf8',
'cp437', 'api', 'library', 'asyncio', 'talker')),
classifiers=['License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Topic :: System :: Networking',
'Topic :: Terminals :: Telnet',
'Topic :: System :: Shells',
'Topic :: Internet',
],
)