Reorganized repo a bit
This commit is contained in:
25
setup.py
Normal file
25
setup.py
Normal 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',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user