Bit of a cleanup

Moved all the files that don't need to be at top level to the
experiments folder.

Started using uv to init the project, should the install easier.
This commit is contained in:
Tyler Marques 2025-06-23 09:18:20 -07:00
parent 5b85b9f89e
commit a93a89f7cb
No known key found for this signature in database
GPG key ID: CB99EDCF41D3016F
26 changed files with 1608 additions and 5097 deletions

View file

@ -1,5 +1,28 @@
[tool.ruff]
exclude = [
"diplomacy",
"docs"
[project]
name = "ai-diplomacy"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"anthropic>=0.54.0",
"bcrypt>=4.3.0",
"coloredlogs>=15.0.1",
"google-genai>=1.21.1",
"json-repair>=0.47.2",
"matplotlib>=3.10.3",
"openai>=1.90.0",
"pylint>=2.3.0",
"pytest>=4.4.0",
"pytest-xdist>=3.7.0",
"python-dateutil>=2.9.0.post0",
"pytz>=2025.2",
"seaborn>=0.13.2",
"sphinx>=8.2.3",
"sphinx-copybutton>=0.5.2",
"sphinx-rtd-theme>=3.0.2",
"together>=1.5.17",
"tornado>=5.0",
"tqdm>=4.67.1",
"ujson>=5.10.0",
]