Archived
1
0
This repository has been archived on 2023-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
celeste-ai/pyproject.toml
2023-03-08 16:08:24 -08:00

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)"}