forked from akabarki76/bugster-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
84 lines (79 loc) · 2.31 KB
/
setup.py
File metadata and controls
84 lines (79 loc) · 2.31 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import re
from setuptools import find_packages, setup
# Read version from bugster/__init__.py
with open("bugster/__init__.py", encoding="utf-8") as f:
version_match = re.search(r'__version__ = ["\']([^"\']*)["\']', f.read())
if version_match:
version = version_match.group(1)
else:
raise RuntimeError("Unable to find version string.")
setup(
name="bugster",
version=version,
packages=find_packages(),
install_requires=[
"aiohappyeyeballs==2.6.1",
"aiohttp==3.12.14",
"aiosignal==1.4.0",
"altgraph==0.17.4",
"annotated-types==0.7.0",
"anyio==4.9.0",
"attrs==25.3.0",
"certifi==2025.6.15",
"charset-normalizer==3.4.2",
"click==8.2.1",
"gitdb==4.0.12",
"GitPython==3.1.45",
"loguru==0.7.3",
"macholib==1.16.3",
"h11==0.16.0",
"httpcore==1.0.9",
"httpx==0.28.1",
"httpx-sse==0.4.1",
"huggingface-hub==0.33.4",
"idna==3.10",
"markdown-it-py==3.0.0",
"MarkupSafe==3.0.2",
"mcp==1.11.0",
"mdurl==0.1.2",
"packaging==25.0",
"pathspec==0.12.1",
"posthog==6.1.0",
"pydantic==2.11.7",
"pydantic-settings==2.10.1",
"pydantic_core==2.35.2",
"Pygments==2.19.2",
"pyinstaller-hooks-contrib==2025.6",
"python-dotenv==1.1.1",
"python-multipart==0.0.20",
"PyYAML==6.0.2",
"referencing==0.36.2",
"regex==2024.11.6",
"requests==2.32.4",
"rich==14.1.0",
"rpds-py==0.25.1",
"shellingham==1.5.4",
"smmap==5.0.2",
"sniffio==1.3.1",
"sse-starlette==2.4.1",
"types-requests==2.32.4.20250611",
"typing-inspection==0.4.1",
"typing_extensions==4.14.1",
"urllib3==2.5.0",
"uvicorn==0.35.0",
"websockets==15.0.1",
"yarl==1.20.1",
"zipp==3.23.0",
],
entry_points={
"console_scripts": [
"bugster=bugster.cli:main",
],
},
author="Bugster Team",
description="A CLI tool for managing test cases",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="testing, cli, automation",
python_requires=">=3.10",
)