Spaces:
Sleeping
Sleeping
File size: 737 Bytes
89b8989 |
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 |
from setuptools import setup, find_packages
setup(
name="health_assistant",
version="0.1.0",
packages=find_packages(where="backend"),
package_dir={"": "backend"},
install_requires=[
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"python-multipart>=0.0.5",
"Pillow>=8.3.1",
"transformers>=4.11.3",
"torch>=1.9.0",
"python-dotenv>=0.19.0",
"httpx>=0.19.0",
"pydantic>=1.8.0",
],
extras_require={
"dev": [
"pytest>=6.2.5",
"pytest-cov>=2.12.1",
"pytest-asyncio>=0.15.1",
"black>=21.7b0",
"isort>=5.9.3",
"mypy>=0.910",
],
},
python_requires=">=3.8",
)
|