-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 845 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='packetserver',
version='0.4.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
"fastapi",
"uvicorn[standard]",
"jinja2",
"argon2-cffi",
"ZODB",
"ZEO",
'click',
'pyham_pe',
'msgpack',
'pyham_ax25',
'ZODB',
'ZEO',
'podman',
'tabulate',
'pydantic',
'pydantic_settings'
],
entry_points={
'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",
],
},
)