-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.71 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (50 loc) · 1.71 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
"""Setup configuration for ClinClaw."""
from setuptools import setup, find_packages
setup(
name="clinclaw",
version="0.2.0",
description="Medical AI Agent Orchestration Framework for OpenClaw Built on Harness Theory",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="ClinClaw",
license="MIT",
packages=find_packages(include=["clinclaw", "clinclaw.*"]),
python_requires=">=3.10",
install_requires=[
"httpx>=0.25.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
],
extras_require={
"openclaw": ["openclaw>=2026.4.0"],
"crewai": ["crewai>=0.28.0"],
"all": ["openclaw>=2026.4.0", "crewai>=0.28.0"],
"server": ["fastapi>=0.104.0", "uvicorn>=0.24.0"],
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-asyncio>=0.21",
"mypy>=1.0",
"ruff>=0.1.0",
"pre-commit>=3.0",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="medical ai agent harness openclaw diagnosis drug-discovery health-management",
project_urls={
"Documentation": "",
"Source": "",
"Issues": "",
},
)