forked from tyler-ingebrand/FunctionEncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1017 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["Examples", "imgs"] # exclude packages matching these glob patterns (empty by default)
[project]
name = "MultiAgentFunctionEncoder"
version = "0.0.1"
authors=[{name="Po-han Li", email="pohanli@utexas.edu"}]
description = """A package for learning basis functions over arbitrary function sets in multi-agent networks."""
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"torch>=2.0",
"tqdm",
"tensorboard",
"numpy<=1.26.4"
]
[tool.poetry]
name = "MultiAgentFunctionEncoder"
version = "0.0.1"
authors = ["Po-han Li <pohanli@utexas.edu>"]
packages = [{include = "FunctionEncoder"}]
description = "Multi-agent function encoder"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
ruff = "*"
numpy = "<=1.26.4"
pandas = "*"
torch = ">=2.0"
tqdm = "*"
[project.urls]
homepage = "https://github.com/UTAustin-SwarmLab/MultiAgentFunctionEncoder"