SmartContractAudit / pyproject.toml
ajaxwin
project working
6be844b
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-smartcontractenv"
version = "1.2.0"
description = "Smartcontractenv environment for OpenEnv"
requires-python = ">=3.12,<3.13"
dependencies = [
"openenv<=0.1.13",
"openenv-core[core]>=0.2.0",
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"pydantic==2.8.2",
"openai>=2.7.2",
"httpx==0.27.2",
"python-multipart==0.0.9",
"pyyaml==6.0.2",
"pandas==2.2.2",
"numpy==2.1.1",
"scikit-learn==1.5.0",
"sentence-transformers==3.0.1",
"nltk==3.9.4",
]
[project.optional-dependencies]
dev = []
[project.scripts]
# Server entry point - enables running via: uv run --project . server
# or: python3 -m smartcontractenv.server.app
server = "smartcontractenv.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["smartcontractenv", "smartcontractenv.server"]
package-dir = { "smartcontractenv" = ".", "smartcontractenv.server" = "server" }