Initial upload: DevDash CLI with TUI dashboard
This commit is contained in:
30
setup.py
Normal file
30
setup.py
Normal 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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user