Updated pyproject.toml
This commit is contained in:
parent
ebff2551cd
commit
f7d171399f
@ -1,13 +1,35 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools", "wheel"]
|
requires = ["setuptools>=61.0", "wheel"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "fancy_rl"
|
name = "fancy_rl"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
description = "Minimalistic and efficient implementations of PPO and TRPL for torchrl"
|
||||||
"gymnasium",
|
authors = [{name = "Dominik Roth", email = "mail@dominik-roth.eu"}]
|
||||||
"pyyaml",
|
readme = "README.md"
|
||||||
"torch",
|
requires-python = ">=3.7,<3.12"
|
||||||
"torchrl"
|
classifiers = [
|
||||||
]
|
"Development Status :: 3 - Alpha",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3.7",
|
||||||
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
|
]
|
||||||
|
dependencies = [
|
||||||
|
"numpy",
|
||||||
|
"torch",
|
||||||
|
"gymnasium",
|
||||||
|
"tensordict",
|
||||||
|
"torchrl",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Homepage = "https://git.dominik-roth.eu/dodox/fancy_rl"
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
dev = ["pytest"]
|
Loading…
Reference in New Issue
Block a user