From 33b2c63fcc89eb846264ae075e05eb838b696d3d Mon Sep 17 00:00:00 2001 From: Tom de Geus Date: Fri, 27 Oct 2023 16:16:26 +0200 Subject: [PATCH] Fixing typo setup (#81) --- GooseBib/cli/.gitignore | 1 - pyproject.toml | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 GooseBib/cli/.gitignore diff --git a/GooseBib/cli/.gitignore b/GooseBib/cli/.gitignore deleted file mode 100644 index 3e4c71f..0000000 --- a/GooseBib/cli/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.bib diff --git a/pyproject.toml b/pyproject.toml index 353d53c..b4d8eae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,8 +36,14 @@ GbibShowAuthorRename = "GooseBib.bibtex:GbibShowAuthorRename" [project.urls] Source = "https://github.com/tdegeus/GooseBib" +[tool.setuptools] +include-package-data = true + [tool.setuptools.package-data] -myModule = ["*.yaml"] +GooseBib = ["*.yaml"] + +[tool.setuptools.packages.find] +exclude = ["docs*", "tests*"] [tool.setuptools_scm] write_to = "GooseBib/_version.py"