From 8682834e98d7a512bf2728ed144cc293dbacc212 Mon Sep 17 00:00:00 2001 From: Mayank Mittal Date: Fri, 7 Feb 2025 23:04:12 +0100 Subject: [PATCH] Fixes reference to licenses in pyproject.toml --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a5fab87..96a2188 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "rsl-rl-lib" version = "2.1.1" +keywords = ["reinforcement-learning", "isaac", "leggedrobotics", "rl-pytorch"] maintainers = [ { name="Clemens Schwarke", email="cschwarke@ethz.ch" }, { name="Mayank Mittal", email="mittalma@ethz.ch" }, @@ -16,13 +17,15 @@ authors = [ { name="David Hoeller", email="holler.david78@gmail.com" }, ] description = "Fast and simple RL algorithms implemented in PyTorch" -readme = "README.md" +readme = { file = "README.md", content-type = "text/markdown"} +license = "BSD-3-Clause" +license-files = ["LICEN[CS]E*", "licenses/*.txt", "CONTRIBUTORS.md"] + requires-python = ">=3.8" classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent", ] -license = { file = "LICENSE" } dependencies = [ "torch>=1.10.0", "torchvision>=0.5.0",