This commit is contained in:
Holger Sielaff
2025-08-02 20:08:33 +02:00
commit 79c68169f6
47 changed files with 4880 additions and 0 deletions

33
MANIFEST.in Normal file
View File

@@ -0,0 +1,33 @@
# Include the license file
include LICENSE
# Include the README
include README.md
# Include the changelog
include CHANGELOG.md
# Include package data
recursive-include django_translatable_fields/static *
recursive-include django_translatable_fields/templates *
recursive-include django_translatable_fields/locale *.po *.mo
# Include management commands
recursive-include django_translatable_fields/management *
# Exclude compiled Python files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
# Exclude development files
exclude .gitignore
exclude .pre-commit-config.yaml
exclude tox.ini
exclude .coverage
prune tests/
prune .git/
prune .github/
prune debian/