33 lines
729 B
Plaintext
33 lines
729 B
Plaintext
# 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/ |