core-identity-env / pyproject.toml
hirann
Add Core Identity environment for OpenEnv
1f9fc8c
raw
history blame contribute delete
579 Bytes
[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*"]