From bffa20e658c91122fb7fd0f28bfb05c7d1f76c8a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 06:52:39 +0000 Subject: [PATCH] Initial upload: DevDash CLI with TUI dashboard --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..61d30da --- /dev/null +++ b/setup.py @@ -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", + ], + }, +)