forked from pysam-developers/pysam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
60 lines (57 loc) · 1.41 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
#
# Use .add_data_files and .add_data_dir methods in a appropriate
# setup.py files to include non-python files such as documentation,
# data, etc files to distribution. Avoid using MANIFEST.in for that.
#
include MANIFEST.in
include COPYING
include INSTALL
include KNOWN_BUGS
include THANKS
include pysam/c*.pxd
include pysam/c*.pyx
include pysam/c*.c
include pysam/*.c
include pysam/*.h
include samtools/*.h
include samtools/*/*.h
include htslib/*.c
include htslib/*.h
include htslib/htslib/*.h
include htslib/cram/*.c
include htslib/cram/*.h
include pysam.py
# pysam tests
include tests/00README.txt
include tests/pysam_data
include tests/tabix_data
include tests/*.py
#ex1.fa
#include tests/ex1.sam.gz
#include tests/ex3.sam
#include tests/ex4.sam
#include tests/ex5.sam
#include tests/ex6.sam
#include tests/ex7.sam
#include tests/ex8.sam
#include tests/ex9_fail.bam
#include tests/ex9_nofail.bam
#include tests/ex10.sam
#include tests/example.py
#include tests/pysam_test.py
#include tests/segfault_tests.py
#include tests/example_*.sam
#include tests/example_btag.bam
#include tests/tag_bug.bam
#include tests/example.vcf40
#include tests/example_empty_header.bam
#include tests/test_unaligned.bam
#include tests/issue100.bam
# tabix tests
#include tests/example.gtf.gz
#include tests/example.gtf.gz.tbi
#include tests/example.bed.gz
#include tests/example.bed.gz.tbi
#include tests/vcf-examples/*.vcf
# documentation
include doc/*