Skip to content

Commit d876eb2

Browse files
committed
Improve what gets packaged into the tarball
The resulting tarball now includes the following additional files: * MANIFEST.in * Makefile * UNLICENSE * bin/check.sh * bin/clean.sh * bin/lint.sh * bin/setup.sh * bin/test.sh * dev-environment.yml * environment.yml * tests/it/scripting.py
1 parent cb64936 commit d876eb2

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

MANIFEST.in

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Metadata
2+
include MANIFEST.in
3+
include Makefile
4+
include README.md
5+
include UNLICENSE
6+
include pyproject.toml
7+
8+
# Conda Environment Files
9+
include environment.yml
10+
include dev-environment.yml
11+
12+
# Directory inclusion
13+
graft src
14+
graft tests
15+
graft bin
16+
17+
# File exclusion
18+
global-exclude __pycache__
19+
global-exclude *.py[doc]

0 commit comments

Comments
 (0)