forked from biopython/biopython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
65 lines (57 loc) · 2.18 KB
/
MANIFEST.in
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
# 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
# These are now symlinks to the above *.rst files
# (only doing this for the very long used files)
include CONTRIB
include LICENSE
include NEWS
include README
include DEPRECATED
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 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
# Include Bio.Cluster, Bio.Affy, Bio.KDTree, 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/KDTree *.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!
# e.g. from running the unit tests, or PyPy, etc
global-exclude *.pyc *.pyo *.py{} *.py-e
# 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/PopGen/SimCoal/data/*.par # Include SimCoal data files