From eec4c3fd02426976aa7dcff658c661b04da8561b Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Tue, 14 Feb 2023 23:05:43 +0100 Subject: [PATCH] Remove MANIFEST.in, not needed with setuptools_scm --- .gitignore | 2 +- MANIFEST.in | 15 --------------- pyproject.toml | 7 ------- 3 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 MANIFEST.in diff --git a/.gitignore b/.gitignore index 18b3ab1..886e30a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ *.egg-info *~ *.pyc -*_flymake +__pycache__/ .coverage .DS_Store .eggs/ diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 30d2ad0..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,15 +0,0 @@ -include AUTHORS -include CONTRIBUTING.rst -include LICENSE -include README.rst -include *.txt -include tox.ini -recursive-include docs * -prune docs/_build -recursive-include sigal/plugins * -recursive-include sigal/themes * -include sigal/templates/sigal.conf.py -recursive-include tests * -prune tests/sample/_build -recursive-exclude * *.pyc -recursive-exclude * *.pyo diff --git a/pyproject.toml b/pyproject.toml index 431e6de..6e43f47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,6 @@ docs = ["Sphinx>=4.1.0", "alabaster", "cryptography"] sigal = "sigal:main" [tool.setuptools] -zip-safe = false include-package-data = true license-files = ["LICENSE"] @@ -53,12 +52,6 @@ license-files = ["LICENSE"] where = ["src"] namespaces = true -[tool.setuptools.package-data] -sigal = [ - "plugins/**", - "themes/**", -] - [tool.setuptools_scm] write_to = "src/sigal/version.py"