Spaces:
Runtime error
Runtime error
File size: 861 Bytes
8dc7642 | 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 | [project]
name = "freeciv-env"
version = "0.1.0"
description = "OpenEnv environment for Freeciv via freeciv-bot"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"openenv-core[core]==0.2.1",
"freecivbot @ git+https://github.com/chris1869/freeciv-bot.git",
"uvicorn>=0.35.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"requests>=2.32.5",
]
train = [
"accelerate>=1.10.0",
"bitsandbytes>=0.47.0",
"datasets>=4.0.0",
"trl>=0.24.0",
"unsloth>=2026.3.4",
]
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["freeciv_env", "freeciv_env.server", "server"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
markers = [
"integration: requires a live freeciv-web runtime",
]
|