- Update all datetime.utcnow() to datetime.now(UTC) for Python 3.12+ compatibility - Update all datetime.utcfromtimestamp() to datetime.fromtimestamp(..., UTC) - Fix dataclass default_factory to use lambda: datetime.now(UTC) - Update auth, audit, billing, and realtime modules - Add UTC import from datetime module - Update pytest configuration to include pytest-asyncio - All 28 Phase 8 enterprise tests pass with no warnings Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
24 lines
594 B
TOML
24 lines
594 B
TOML
[project]
|
|
name = "ontology-platform"
|
|
version = "0.2.0"
|
|
description = "Fast ontology extraction platform with lightweight JSON-based candidate extraction and optional OntoCast RDF refinement."
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.110",
|
|
"pydantic>=2",
|
|
"pydantic-settings>=2",
|
|
"PyYAML>=6",
|
|
"requests>=2.31",
|
|
"trafilatura[all]>=2.0.0",
|
|
"uvicorn[standard]>=0.29",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8", "pytest-asyncio>=0.23"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
addopts = "-p no:cacheprovider"
|
|
asyncio_mode = "auto"
|