Skip to content

Commit 0bfc99a

Browse files
committed
fix MANIFEST
1 parent 79f0856 commit 0bfc99a

File tree

1 file changed

+33
-6
lines changed

1 file changed

+33
-6
lines changed

MANIFEST.in

+33-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
1-
graft docs
1+
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
2+
graft wheelhouse
23

3-
include COPYING
4-
include AUTHORS
4+
recursive-include birl *.py
5+
recursive-exclude __pycache__ *.py[cod] *.orig
56

6-
recursive-include src/einsteinpy/tests *.py *.html
7+
# Include the README
8+
include *.md
79

8-
prune docs/source/examples/.ipynb_checkpoints
9-
global-exclude *.py[cod] __pycache__ *.so *.dylib
10+
# Include the license file
11+
include LICENSE
12+
13+
exclude *.sh
14+
exclude *.toml
15+
recursive-include examples *.py
16+
recursive-include pytorch_lightning *.py
17+
18+
# exclude tests from package
19+
recursive-exclude tests *
20+
exclude tests
21+
22+
# Exclude the documentation files
23+
recursive-exclude docs *
24+
exclude docs
25+
26+
# Include the Requirements
27+
include requirements.txt
28+
29+
# Exclude build configs
30+
exclude *.yml
31+
32+
prune .git
33+
prune .github
34+
prune notebook*
35+
prune temp*
36+
prune test*

0 commit comments

Comments
 (0)