Files
packetserver/setup.py
2025-03-18 22:50:24 -04:00

25 lines
475 B
Python

from setuptools import setup, find_packages
setup(
name='packetserver',
version='0.4.1',
packages=[
'packetserver',
],
include_package_data=True,
install_requires=[
'click',
'pyham_pe',
'msgpack',
'pyham_ax25',
'ZODB',
'ZEO',
'podman',
'tabulate'
],
entry_points={
'console_scripts': [
'packcli = packetserver.client.cli:cli',
],
},
)