forked from strakam/generals-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 729 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 729 Bytes
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
[project]
name = "generals-bots"
version = "2.5.0"
description = "Develop your agent for generals.io!"
authors = [{name = "Matej Straka", email = "strakammm@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy>=2.0.0",
"pygame>=2.6.0",
"python-socketio[client]>=5.11.4",
"jax>=0.4.30",
"jaxlib>=0.4.30",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["generals*"]
[tool.ruff]
line-length = 120
lint.select = ["E", "F", "I", "BLE", "UP", "FA"]
target-version = "py311"
exclude = ["tests", "examples"]