Spaces:
Runtime error
Runtime error
File size: 579 Bytes
1f9fc8c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [project]
name = "core_identity_env"
version = "0.1.0"
description = "Core Identity environment for verification, authentication, and profile management"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"pydantic>=2.5.0",
]
[project.scripts]
server = "uvicorn:main"
core-identity = "core_identity_env.server.app:app"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["core_identity_env*"] |