forked from jupyter/nbclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
43 lines (36 loc) · 834 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
43
include LICENSE
include MANIFEST.in
include requirements.txt
include requirements-dev.txt
include *.md
include pytest.ini
include pyproject.toml
include .pre-commit-config.yaml
include nbclient/py.typed
# Code and test files
recursive-include nbclient *.ipynb
recursive-include nbclient *.png
recursive-include nbclient *.py
# Documentation
graft docs
exclude docs/\#*
exclude .readthedocs.yml
exclude codecov.yml
# Examples
graft examples
# docs subdirs we want to skip
prune docs/_build
prune docs/gh-pages
prune docs/dist
# Patterns to exclude from any directory
global-exclude *~
global-exclude *.pyc
global-exclude *.pyo
global-exclude .git
global-exclude .ipynb_checkpoints
# Binder files to be excluded
exclude binder
recursive-exclude binder *.ipynb
recursive-exclude binder *.yml
# Exclude CI/CD files
prune .circleci