forked from markovmodel/PyEMMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
40 lines (32 loc) · 1.16 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
include README.rst
include LICENSE.txt
include pyproject.toml
# include test modules in pyemma directory
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
# sources of extensions (incl. cython)
recursive-include pyemma *.pyx *.h *.c
# do not include eventually present eggs (installed during setup runtime)
prune .eggs
recursive-include ext/pybind11/include *.h
exclude pyemma/thermo/extensions/mbar/mbar.c \
pyemma/thermo/extensions/dtram/dtram.c \
pyemma/thermo/extensions/mbar_direct/mbar_direct.c \
pyemma/thermo/extensions/trammbar_direct/trammbar_direct.c \
pyemma/thermo/extensions/util/util.c \
pyemma/thermo/extensions/bar/bar.c \
pyemma/thermo/extensions/trammbar/trammbar.c \
pyemma/thermo/extensions/tram/tram.c \
pyemma/thermo/extensions/wham/wham.c \
pyemma/thermo/extensions/tram_direct/tram_direct.c \
pyemma/_ext/orderedset/_orderedset.c \
pyemma/_ext/variational/solvers/eig_qr/eig_qr.c \