-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.28 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.28 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
"""Setup configuration for MedSight"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text() if readme_file.exists() else ""
setup(
name="medsight",
version="2.0.0",
author="MedSight Team",
description="AI-Powered Medical Assistant with Multi-Agent Intelligence",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"google==3.0.0",
"google-cloud-core==2.4.1",
"google-cloud-aiplatform==1.99.0",
"streamlit==1.28.0",
"gunicorn==20.0.4",
"python-dotenv==1.0.0",
"pydantic==2.5.3",
"PyPDF2==3.0.1",
"pydicom==2.4.4",
"pillow==10.1.0",
"pyyaml==6.0.1",
"aiofiles==23.2.1",
"pytest==7.4.3",
"pytest-asyncio==0.21.1",
"pytest-cov==4.1.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)