31 lines
681 B
Python
31 lines
681 B
Python
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",
|
|
],
|
|
},
|
|
)
|