From 8b84414e889f228980127455d1bdb4b51ff374f2 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Fri, 2 Feb 2024 20:49:45 +0100 Subject: [PATCH] cleanup --- pyproject.toml | 13 +++++-------- requirements.txt | 1 - 2 files changed, 5 insertions(+), 9 deletions(-) delete mode 100644 requirements.txt diff --git a/pyproject.toml b/pyproject.toml index ae473a3..1dc084c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,22 +3,19 @@ requires = ["setuptools"] [project] name = "xacro" -dynamic = ["version"] -description = "With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions." +version = "2.0.10" +description = "xacro is a macro language for XML" readme = "README.md" license = {file = "LICENSE"} -dependencies = [ - "pyyaml", -] -requires-python = ">= 3.10" +dependencies = ["pyyaml"] +requires-python = ">= 3.8" [tool.setuptools.packages.find] where = ["."] -include = ["xacro*"] +include = ["xacro"] exclude = [] namespaces = false [project.urls] Documentation = "https://github.com/ros/xacro/wiki" Repository = "https://github.com/ros/xacro" - diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index c3726e8..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -pyyaml