File size: 1,234 Bytes
88875f7
 
 
 
 
 
 
 
 
 
 
 
c27e659
88875f7
6be844b
88875f7
6be844b
7fe808d
 
 
 
878ca5a
7fe808d
 
 
 
 
 
 
878ca5a
88875f7
 
 
7fe808d
88875f7
 
 
7fe808d
88875f7
 
 
 
 
 
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
# 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" }