Mark
/
celeste-ai
Archived
1
0
Fork 0
This repository has been archived on 2023-11-28. You can view files and clone it, but cannot push or open issues/pull-requests.
celeste-ai/celeste/pyproject.toml

26 lines
523 B
TOML

[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [ "." ]
include = ["celeste_ai*"]
namespaces = false
[project]
name = "celeste_ai"
description = "A reinforcement learning agent for Celeste Classic"
version = "1.0.0"
dependencies = [
"matplotlib==3.6.3",
"torch==1.13.1"
]
authors = [
{ name="Mark", email="mark@betalupi.com" }
]
readme = "README.md"
requires-python = ">=3.7"
license = {text = "GNU General Public License v3 (GPLv3)"}