Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

MANIFEST.in 669 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  1. # Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
  2. graft wheelhouse
  3. recursive-exclude __pycache__ *.py[cod] *.orig
  4. # Include the README and CHANGELOG
  5. include *.md
  6. recursive-include research_mnist *.md
  7. # Include the license file
  8. include LICENSE
  9. exclude *.sh
  10. exclude *.toml
  11. exclude *.svg
  12. # exclude tests from package
  13. recursive-exclude tests *
  14. recursive-exclude site *
  15. exclude tests
  16. # Exclude the documentation files
  17. recursive-exclude docs *
  18. exclude docs
  19. # Include the Requirements
  20. include requirements.txt
  21. # Exclude build configs
  22. exclude *.yml
  23. prune .git
  24. prune .github
  25. prune .circleci
  26. prune notebook*
  27. prune temp*
  28. prune test*
  29. prune benchmark*
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...