-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 721 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 721 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
from setuptools import setup, find_packages
setup(
name="fluid",
version="0.1.0",
description="CLI/TUI tool to manage ROCm Docker development containers",
packages=find_packages(),
package_data={"fluid.gui": ["static/**/*"]},
python_requires=">=3.10",
install_requires=[
"typer>=0.9.0",
"rich>=13.0.0",
"docker>=7.0.0",
],
extras_require={
"gui": [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"websockets>=12.0",
"pydantic>=2.0.0",
],
},
entry_points={
"console_scripts": [
"fluid=fluid.cli:app",
"fluid-gui=fluid.gui.server:run",
],
},
)