From 70d8864591ab678d8b8ab9673c7f50a1f3e02509 Mon Sep 17 00:00:00 2001 From: daniel nakov Date: Mon, 21 Oct 2024 20:40:58 -0400 Subject: [PATCH] Add .tcss files to package --- MANIFEST.in | 1 + pyproject.toml | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f5c7bbc --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include r2ai/ui *.tcss \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index acd2d79..c284704 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,9 @@ repository = "https://github.com/radareorg/r2ai" [project.scripts] r2ai = "r2ai.main:run" +[tool.setuptools] +include-package-data = true + [tool.setuptools.packages.find] where = ["."] include = ["r2ai*"] @@ -56,5 +59,6 @@ namespaces = true readme = {file = "README.md", content-type = "text/markdown"} [build-system] -requires = ["setuptools"] +requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" +