Reorganized repo a bit

This commit is contained in:
Michael Woods
2025-03-18 22:50:24 -04:00
parent 856e6f429b
commit 338afc7a63
78 changed files with 5647 additions and 15 deletions

25
setup.py Normal file
View File

@@ -0,0 +1,25 @@
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',
],
},
)