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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# MANIFEST.in
#
# This tells distutils what files to distribute.
include CONTRIB.rst
include LICENSE.rst
include NEWS.rst
include README.rst
include DEPRECATED.rst
include CONTRIBUTING.rst
include MANIFEST.in
recursive-include Scripts * # Include scripts.
recursive-include Tests * # Include regression tests.
recursive-include Bio *.c # Include all .c files.
recursive-include Bio *.h # Include headers to compile .c files.
recursive-include Doc *.tex # Include relevant documentation.
recursive-include Doc *.pdf
recursive-include Doc *.py
recursive-include Doc *.html
recursive-include Doc *.fasta
recursive-include Doc Makefile
recursive-include Doc/examples *.aln
recursive-include Doc/examples *.faa
recursive-include Doc/examples *.xpk
recursive-include Doc/examples *.gbk
recursive-include Doc/examples *.sth
recursive-include Doc/examples *.bgz
recursive-include Doc/examples *.xml
recursive-include Doc/examples *.psl
recursive-include Doc/examples *.dnd
recursive-include Doc/examples *.csv
recursive-include Doc/images *.png
recursive-include Doc/images *.jpg # e.g. the old logo for the Tutorial
recursive-include Doc/images *.svg # e.g. the new logo for the Tutorial
include Doc/examples/ls_orchid.gbk.gz
include Doc/examples/ls_orchid.gbk.bz2
include Doc/examples/ec_5.4.2.2.txt
exclude Doc/_build/
# Include Bio.Cluster, Bio.Affy, Bio.phenotype
# Note setup.py will only install these if Numpy is installed.
recursive-include Bio/Cluster *.py
recursive-include Bio/Affy *.py
recursive-include Bio/Align *.py
recursive-include Bio/phenotype *.py
exclude Tests/Graphics/* # Exclude test files generated by reportlab.
include Tests/Graphics/README # But include README file to make directory!
# Exclude archive of sample Gck files (automatically downloaded during
# tests but that we cannot redistribute).
exclude Tests/Gck/DGVC_GCK.zip
# e.g. from running the unit tests, or PyPy, etc
global-exclude *.pyc *.pyo *.py{} *.py-e
# Include Python type annotation declarations, see PEP-561
include Bio/py.typed
include BioSQL/py.typed
# Make sure the required data files are included.
include Bio/Entrez/DTDs/*.dtd # Include DTD files for Entrez
include Bio/Entrez/DTDs/*.ent # Include DTD files for Entrez
include Bio/Entrez/DTDs/*.mod # Include DTD files for Entrez
include Bio/Entrez/XSDs/*.xsd # Include XSD files for Entrez
include Bio/Align/substitution_matrices/data/* # Include precalculated substitution matrices
exclude Bio/Align/substitution_matrices/data/README.txt
|