Skip to content

Commit 0bb53d0

Browse files
committed
1 parent 24b8e72 commit 0bb53d0

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

MANIFEST.in

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#---------
99
# SECTION: main code sources
1010
#
11-
recursive-include src *.py *.pyx
11+
recursive-include src *.c *.py *.pyx *.so
1212
# principles:
1313
# - *no* "prune" command is used
1414
# - use "include-recursive", by relevant file extensions
@@ -29,7 +29,6 @@ recursive-include requirements *.txt
2929
# hints:
3030
# - not all projects include requirements, but they can be drawn in anyway by dynamic dependencies
3131
# in the setuptools build process, linked via config in pyproject.toml
32-
# - for some repos, the *.txt are actually lockfiles. This probably needs fixing.
3332

3433
#---------
3534
# SECTION: root files
@@ -69,12 +68,9 @@ prune .github
6968
prune .nox
7069
prune .tox
7170
prune .coverage
71+
prune docs
7272
# (2) top-level files to omit
73-
exclude Dockerfile
74-
exclude codecov.yml
7573
exclude .coveragerc
76-
exclude index.ipynb
77-
exclude summary.png
7874
# (3) file types (path patterns) to skip everywhere
7975
global-exclude *.py[cod]
8076
global-exclude __pycache__
@@ -86,3 +82,11 @@ global-exclude __pycache__
8682
# previous sections -- such as python compiler cache files
8783
# - can include this section as **boilerplate** :
8884
# - won't all exist in every repo, but including them all does no harm
85+
86+
#
87+
#=================================
88+
# Local Python-Stratify-specific settings
89+
#
90+
exclude Dockerfile
91+
exclude index.ipynb
92+
exclude summary.png

0 commit comments

Comments
 (0)