ugtc / pyproject.toml
Ekrem-the-second's picture
Initial release: UGTC - Uncertainty-Gated Temporal Credit
d92d8cf verified
Raw
History Blame Contribute Delete
2.22 kB
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "ugtc"
version = "1.0.0"
description = "UGTC: Uncertainty-Gated Temporal Credit — plug-in advantage estimator for actor-critic RL"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Yağız Ekrem Dalar", email = "pertevniyalai@gmail.com" }
]
keywords = [
"reinforcement-learning",
"advantage-estimation",
"temporal-credit",
"uncertainty",
"actor-critic",
"PPO",
"TD3",
"SAC",
"DDPG",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.10"
dependencies = [
"torch>=2.2.0",
"numpy>=1.24.0",
]
[project.optional-dependencies]
mujoco = [
"gymnasium>=1.0.0",
"mujoco>=3.1.0",
]
procgen = [
"gymnasium>=1.0.0",
"procgen>=0.10.7",
]
all = [
"gymnasium>=1.0.0",
"mujoco>=3.1.0",
"procgen>=0.10.7",
"metaworld>=2.0.0",
"crafter>=1.8.0",
"pyyaml>=6.0",
"matplotlib>=3.7.0",
"pandas>=2.0.0",
"psutil>=5.9.0",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"black>=24.0",
"isort>=5.12",
"mypy>=1.8",
"ruff>=0.3",
]
[project.urls]
Homepage = "https://ethosoftai.github.io/ugtc"
Repository = "https://github.com/ethosoftai/ugtc"
Paper = "https://doi.org/10.5281/zenodo.19715116"
Demo = "https://huggingface.co/spaces/Ethosoft/ugtc"
"Bug Tracker" = "https://github.com/ethosoftai/ugtc/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["ugtc*"]
[tool.black]
line-length = 100
target-version = ["py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true