Remove MANIFEST.in, not needed with setuptools_scm

This commit is contained in:
Simon Conseil
2023-02-14 23:05:43 +01:00
parent 7fe68fc729
commit eec4c3fd02
3 changed files with 1 additions and 23 deletions

2
.gitignore vendored
View File

@@ -1,7 +1,7 @@
*.egg-info
*~
*.pyc
*_flymake
__pycache__/
.coverage
.DS_Store
.eggs/

View File

@@ -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

View File

@@ -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"