openenv_hack / pyproject.toml
thomasm6m6's picture
Initial Freeciv OpenEnv Space
8dc7642 verified
raw
history blame contribute delete
861 Bytes
[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",
]