Initial upload: DevDash CLI with TUI dashboard

This commit is contained in:
2026-02-01 06:52:39 +00:00
parent 7df9efe6c1
commit bffa20e658

30
setup.py Normal file
View File

@@ -0,0 +1,30 @@
from setuptools import setup, find_packages
setup(
name="devdash-cli",
version="0.1.0",
packages=find_packages(where="."),
python_requires=">=3.10",
install_requires=[
"textual>=0.52.0",
"click>=8.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
"responses>=0.23.0",
]
},
entry_points={
"console_scripts": [
"devdash=src.main:main",
],
},
)