forked from markovmodel/PyEMMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
42 lines (31 loc) · 914 Bytes
/
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
include README.rst
include LICENSE.txt
# include test modules in pyemma directory
#recursive-include pyemma/msm/tests
#recursive-include pyemma/msm/io/tests
#recursive-include pyemma/msm/io/matrix/testfiles
recursive-include pyemma tests/* tests/data/*
recursive-include pyemma testfiles/*
# exclude compiled bytecode
global-exclude *.pyc
# exclude git backup files
global-exclude *.orig
# versioneer
include versioneer.py
include pyemma/_version.py
# setup stuff
include setup_util.py
# documentation
graft doc
prune doc/build
prune doc/source/generated
prune doc/source/api/generated
# ipython notebooks
#graft pyemma-ipython
#recursive-exclude pyemma-ipython .ipynb_checkpoints
# exclude git related files
recursive-exclude * git .git*
# sources of extensions (incl. cython)
recursive-include pyemma *.pyx *.h *.c
# do not include eventually present eggs (installed during setup runtime)
prune .eggs