This commit is contained in:
Michael Woods
2025-12-20 21:59:25 -05:00
parent dba982593a
commit f58f669cef
3 changed files with 33 additions and 6 deletions

View File

@@ -6,6 +6,12 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
"fastapi",
"uvicorn[standard]",
"jinja2",
"argon2-cffi",
"ZODB",
"ZEO",
'click',
'pyham_pe',
'msgpack',
@@ -19,6 +25,8 @@ setup(
'console_scripts': [
'packcli = packetserver.client.cli:cli',
'packcfg = packetserver.server.cli:config',
"packetserver-http-users = packetserver.runners.http_user_manager:main",
"packetserver-http-server = packetserver.runners.http_server:main",
],
},
)