-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathMANIFEST.in
More file actions
86 lines (75 loc) · 1.72 KB
/
MANIFEST.in
File metadata and controls
86 lines (75 loc) · 1.72 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
include *.md
include CITATION.cff
include LICENSE
include MANIFEST.in
include pyproject.toml
include setup.cfg
include setup.py
include .clang-format
include environment.yml
include vcpkg.json
# Anaconda files
include conda-recipe/bld.bat
include conda-recipe/build.sh
include conda-recipe/meta.yaml
include conda-recipe/conda_build_config.yaml
include install_dependencies.sh
# Scripts
recursive-include scripts *.sh
include scripts/hooks/pre-push
include scripts/hooks/post-merge
include CMakeLists.txt
include requirements.txt
graft cpp
graft cpp/include
graft cpp/src
graft src
graft src/egttools
graft src/egttools/numerical
graft src/egttools/behaviors
graft src/egttools/behaviors/CRD
graft src/egttools/behaviors/NormalForm
graft src/egttools/behaviors/NormalForm/TwoActions
graft src/egttools/behaviors/CPR
graft src/egttools/datastructures
graft src/egttools/distributions
graft src/egttools/games
graft src/egttools/helpers
graft src/egttools/plotting
graft pybind11
graft tests
# pybind11 stubs
recursive-include src/egttools *.pyi py.typed
recursive-include src/egttools/numerical/numerical_ *.pyi
prune vcpkg
prune vcpkg_installed
include .gitmodules
graft cmake
graft res
include pytest.ini
graft docs
prune docs/_build
prune docs/_autosummary
prune docker
prune _skbuild
prune dist
prune .pytest_cache
prune *.egg-info
prune __pycache__
# exclude from sdist
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.pyc
global-exclude .DS_Store
global-exclude .ipynb_checkpoints/*
global-exclude *.so
exclude .dockerignore
exclude Dockerfile
exclude pybind11/.git
exclude build_tools
recursive-exclude build_tools *
exclude src/egttools/plotting/barplots.py
# added by check-manifest
include *.json
include *.yaml
include *.yml