Files
lowobservable.coax/pycoax/setup.py
2021-05-12 19:22:34 -05:00

36 lines
1023 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=['more-itertools==8.7.0', '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'
]
)