CoolFace
Apppublic

Ar-Srivas/BitWise_CSS_env

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
pyproject.toml53 linesDownload Raw Back to root
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7[build-system]8requires = ["setuptools>=45", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-css_env"13version = "1.0.0"14description = "Css Env environment for OpenEnv"15requires-python = ">=3.10"16dependencies = [17    "cssselect2>=0.9.0",18    # Core OpenEnv runtime (provides FastAPI server + HTTP client types)19    # install from github20    # "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",21    "lxml>=6.0.2",22    "openenv-core[core]>=0.2.1",23    # Environment-specific dependencies24    # Add all dependencies needed for your environment here25    # Examples:26    # "numpy>=1.19.0",27    # "torch>=2.0.0",28    # "gymnasium>=0.29.0",29    # "openspiel>=1.0.0",30    # "smolagents>=1.22.0,<2",31    "pydantic>=2.12.5",32    "tinycss2>=1.5.1",33]34 35[project.optional-dependencies]36dev = [37    "pytest>=8.0.0",38    "pytest-cov>=4.0.0",39]40 41[project.scripts]42# Server entry point - enables running via: uv run --project . server43# or: python -m css_env.server.app44server = "css_env.server.app:main"45 46[tool.setuptools]47include-package-data = true48package-dir = { "css_env" = "." }49 50[tool.setuptools.packages.find]51where = ["."]52include = ["css_env*"]53