Spaces:
Sleeping
Sleeping
File size: 881 Bytes
2043afa fa51dd9 2043afa | 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 | [build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polypharmacy-env"
version = "0.1.0"
description = "OpenEnv environment for elderly polypharmacy medication-review safety"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"httpx>=0.25.0",
"black",
"isort",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
where = ["backend/src"]
[tool.pytest.ini_options]
testpaths = ["backend/src/polypharmacy_env/tests"]
pythonpath = ["backend/src"]
[tool.black]
line-length = 99
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 99
|