1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
exclude .gitignore
exclude .gitattributes
exclude .readthedocs.yaml
include MANIFEST.in
include LICENSE.txt
include README.rst
include tox.ini
graft src/formencode
graft src/formencode/javascript
include src/formencode/i18n/*.pot
recursive-include src/formencode/i18n *.po *.mo
graft examples
recursive-include examples *.py
graft tests
graft tests/htmlfill_data
recursive-include docs *.rst conf.py Makefile make.bat
prune docs/_build
global-exclude */__pycache__/*
global-exclude *.py[cod]
|