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

.gitignore 435 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
39
  1. # based on https://raw.githubusercontent.com/python-poetry/poetry/master/.gitignore
  2. *.pyc
  3. # Packages
  4. *.egg
  5. !/tests/**/*.egg
  6. /*.egg-info
  7. /dist/*
  8. build
  9. _build
  10. .cache
  11. *.so
  12. # Installer logs
  13. pip-log.txt
  14. # Unit test / coverage reports
  15. .coverage
  16. .tox
  17. .pytest_cache
  18. .DS_Store
  19. .idea/*
  20. .python-version
  21. .vscode/*
  22. /test.py
  23. /test_*.*
  24. /setup.cfg
  25. MANIFEST.in
  26. /setup.py
  27. /docs/site/*
  28. .mypy_cache
  29. .venv
  30. /releases/*
  31. pip-wheel-metadata
  32. /poetry.toml
Tip!

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

Comments

Loading...