File tree 1 file changed +33
-6
lines changed
1 file changed +33
-6
lines changed Original file line number Diff line number Diff line change 1
- graft docs
1
+ # Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
2
+ graft wheelhouse
2
3
3
- include COPYING
4
- include AUTHORS
4
+ recursive- include birl *.py
5
+ recursive-exclude __pycache__ *.py[cod] *.orig
5
6
6
- recursive-include src/einsteinpy/tests *.py *.html
7
+ # Include the README
8
+ include *.md
7
9
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*
You can’t perform that action at this time.
0 commit comments