forked from OpenSourceEconomics/tranquilo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANIFEST.in
33 lines (27 loc) · 839 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
# The MANIFEST.in specifies which files are copied over from a temporary directory to
# site-packages after ``pip install``. Examples can be found here:
# https://www.reddit.com/r/Python/comments/40s8qw/simplify_your_manifestin_commands/ and
# https://blog.ionelmc.ro/presentations/packaging.
# Test what is included in the package by running ``python setup.py sdist`` and inspect
# the tarball.
include CITATION
include LICENSE
include CHANGES.md
include CODE_OF_CONDUCT.md
recursive-include src *.css
recursive-include src *.csv
recursive-include src *.html
recursive-include src *.py
exclude *.sh
exclude *.yaml
exclude *.yml
exclude *.pickle
exclude pytask.ini
prune docs
prune tests
prune .conda
prune .envs
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *-checkpoint.ipynb
global-exclude *.ipynb_checkpoints