-
Notifications
You must be signed in to change notification settings - Fork 20
/
MANIFEST.in
60 lines (53 loc) · 1.17 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
57
58
59
60
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
# Anaconda files
include bld.bat
include build.sh
include install_dependencies.sh
include meta.yaml
include vcpkg.json
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
include .gitmodules
graft cmake
graft res
include pytest.ini
graft docs
prune docs/_build
prune _skbuild
# 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 pybind11/.git
exclude build_tools
recursive-exclude build_tools *
exclude src/egttools/plotting/barplots.py