-
Notifications
You must be signed in to change notification settings - Fork 6
/
MANIFEST.in
56 lines (43 loc) · 1.67 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
include README.rst
include CHANGES.rst
include ez_setup.py
include ah_bootstrap.py
include setup.cfg
include pyoof/tests/coveragerc
recursive-include pyoof *.pyx *.c *.pxd
recursive-include docs *
recursive-include licenses *
recursive-include cextern *
recursive-include examples *
prune build
prune docs/_build
prune docs/api
# the next few stanzas are for astropy_helpers. It's derived from the
# astropy_helpers/MANIFEST.in, but requires additional includes for the actual
# package directory and egg-info.
include astropy_helpers/README.rst
include astropy_helpers/CHANGES.rst
include astropy_helpers/LICENSE.rst
recursive-include astropy_helpers/licenses *
include astropy_helpers/ez_setup.py
include astropy_helpers/ah_bootstrap.py
recursive-include astropy_helpers/astropy_helpers *.py *.pyx *.c *.h *.rst
recursive-include astropy_helpers/astropy_helpers.egg-info *
# include the sphinx stuff with "*" because there are css/html/rst/etc.
recursive-include astropy_helpers/astropy_helpers/sphinx *
prune astropy_helpers/build
prune astropy_helpers/astropy_helpers/tests
# global-exclude *.pyc *.o
# recursive-include pyoof *.py
recursive-include pyoof/data *
recursive-include pyoof *.npz *.npy
include pyoof/data/config_params.yml # config file parameters
include pyoof/data/pyoof.mplstyle # Matplotlib style plots
include pyoof/data/example0.fits # example fits
include pyoof/data/lookup_effelsberg.data # lookup table Effelsberg
# Data for pytest
include pyoof/tests/data/*.npy
include pyoof/tests/data/data_simulated.fits
include pyoof/aperture/tests/data/*.npy
include pyoof/aperture/tests/data/*.npz
global-exclude *.pyc *.o