2021-02-06 23:19:45 -06:00

36 lines
998 B
Python

import os
from setuptools import setup
ABOUT = {}
with open(os.path.join(os.path.dirname(__file__), "coax", "__about__.py")) as file:
exec(file.read(), ABOUT)
LONG_DESCRIPTION = """# pycoax
Python IBM 3270 coaxial interface library.
See [GitHub](https://github.com/lowobservable/coax#readme) for more information.
"""
setup(
name='pycoax',
version=ABOUT['__version__'],
description='IBM 3270 coaxial interface',
url='https://github.com/lowobservable/coax',
author='Andrew Kay',
author_email='projects@ajk.me',
packages=['coax'],
install_requires=['pyserial==3.5', 'sliplib==0.6.2'],
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Terminals'
]
)