diff options
author | Leonard Richardson <leonardr@segfault.org> | 2022-04-08 17:05:06 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2022-04-08 17:05:06 -0400 |
commit | 0c75dd4a83674e840dd9ec3e34d974ec69070d0b (patch) | |
tree | cbeda86f32fd22ea520e1e8cefc17a913bc4216b /MANIFEST.in | |
parent | 4430c10a14d52babc32eb1d069901e64cde21ecb (diff) |
Some cleanup work to get more consistent and complete about what gets packaged with the Beautiful Soup release.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 33821b9..49ef082 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,25 @@ -include test-all-versions -include convert-py3k +# Project metadata include LICENSE -include *.txt +include CHANGELOG + +# Redundant metadata just in case someone is depending on the +# old versions +include COPYING.txt +include NEWS.txt + +# scripts +include test-all-versions +include scripts/*.py +include scripts/*.txt + +# Documentation source in various languages. include doc*/Makefile -include doc*/source/*.py +include doc*/source/conf.py include doc*/source/*.rst include doc*/source/*.jpg -include scripts/*.py -include scripts/*.txt + +# Japanese and Korean translations are in HTML format, not RST. +include doc.jp/index.html +include doc.ko/*.jpg +include doc.ko/index.css +include doc.ko/index.html |