Skip to content

Commit 2f3bae2

Browse files
committed
Update manifest
1 parent 5c9aaa7 commit 2f3bae2

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

MANIFEST.in

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
11
recursive-include pythreejs/static *.*
22

33
include setupbase.py
4+
5+
include LICENSE
6+
include README.md
7+
include pytest.ini
8+
9+
# Documentation
10+
graft docs
11+
exclude docs/\#*
12+
13+
# docs subdirs we want to skip
14+
prune docs/build
15+
prune docs/dist
16+
17+
# Examples
18+
graft examples
19+
20+
# Patterns to exclude from any directory
21+
global-exclude *~
22+
global-exclude *.pyc
23+
global-exclude *.pyo
24+
global-exclude .git
25+
global-exclude .ipynb_checkpoints
26+
27+
# JS files
28+
graft js
29+
prune js/node_modules
30+
graft jslab
31+
prune jslab/node_modules
32+
33+
# TODO: include / exclude autogenerated code?

setup.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
[bdist_wheel]
22
universal=1
3+
4+
[manifix]
5+
known_excludes =
6+
.git
7+
.gitignore
8+
**/node_modules
9+
**/*.pyc
10+
.travis.yml
11+
screencast.gif
12+
readthedocs.yml
13+
environment.yml

0 commit comments

Comments
 (0)