Files
packetserver/setup.py

24 lines
511 B
Python

from setuptools import setup, find_packages
setup(
name='packetserver',
version='0.4.1',
packages=find_packages(),
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',
'packcfg = packetserver.server.cli:config',
],
},
)