CoolFace
Apppublic

albert-einstein-09/codedark

sourceHugging Facemitupdated 8mo agoView on Hugging Face
3likes
pyproject.toml61 linesDownload Raw Back to codedark
1[build-system]2requires = ["setuptools>=45", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "openenv-codedark"7version = "0.1.0"8description = "Multi-turn data analytics environment for RL agent training - OpenEnv compatible"9readme = "README.md"10requires-python = ">=3.10"11license = {text = "MIT"}12authors = [13    {name = "Vijay Athithya", email = "vijay@analytics-rl.com"}14]15keywords = ["openenv", "reinforcement-learning", "data-analytics", "llm", "agents"]16classifiers = [17    "Development Status :: 4 - Beta",18    "Intended Audience :: Developers",19    "Intended Audience :: Science/Research",20    "License :: OSI Approved :: MIT License",21    "Programming Language :: Python :: 3",22    "Programming Language :: Python :: 3.10",23    "Programming Language :: Python :: 3.11",24    "Topic :: Scientific/Engineering :: Artificial Intelligence",25]26dependencies = [27    "fastapi>=0.115.0",28    "pydantic>=2.0.0",29    "uvicorn[standard]>=0.24.0",30    "pandas>=2.0.0",31    "numpy>=1.24.0",32    "requests>=2.31.0",33]34 35[project.optional-dependencies]36dev = [37    "pytest>=8.0.0",38    "pytest-cov>=4.0.0",39    "pytest-asyncio>=0.23.0",40    "httpx>=0.27.0",41]42 43[project.urls]44Homepage = "https://github.com/vj-09/codedark"45Documentation = "https://huggingface.co/spaces/openenv/codedark"46Repository = "https://github.com/vj-09/codedark"47 48[project.scripts]49codedark-server = "codedark.server.app:main"50 51[tool.setuptools]52packages = ["codedark", "codedark.server"]53package-dir = {"codedark" = ".", "codedark.server" = "server"}54 55[tool.setuptools.package-data]56codedark = ["data/*.csv", "data/tasks/*.jsonl", "openenv.yaml"]57 58[tool.pytest.ini_options]59asyncio_mode = "auto"60testpaths = ["tests"]61