megacom/setup.py

21 lines
515 B
Python
Raw Normal View History

2021-05-12 18:51:47 +00:00
from setuptools import setup
setup(name='megacom',
2021-05-20 05:20:42 +00:00
version='0.1.0',
2021-05-12 19:41:58 +00:00
description='Alternative console-based UART client',
url='https://awoo.systems',
author='haskal',
author_email='haskal@awoo.systems',
license='AGPLv3',
2021-05-12 18:51:47 +00:00
packages=['megacom'],
install_requires=[
2021-05-12 19:41:58 +00:00
"pyserial-asyncio"
2021-05-12 18:51:47 +00:00
],
include_package_data=True,
entry_points={
'console_scripts': [
2021-05-12 19:41:58 +00:00
"megacom=megacom:main"
2021-05-12 18:51:47 +00:00
]
},
zip_safe=False)