-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
104 lines (83 loc) · 3.15 KB
/
.gitignore
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Byte-compiled / optimized / DLL files
__pycache__/ # Directory containing Python bytecode files
*.py[cod] # Compiled Python files with extensions .pyc, .pyo, .pyd
*$py.class # Optimized Python class files
# C extensions
*.so # Shared object files (typically for C extensions)
# Distribution / packaging
.Python # Python environment marker file
build/ # Build artifacts directory
develop-eggs/ # Directory for development mode Python eggs
dist/ # Distribution packages (e.g., tar, wheel)
downloads/ # Downloads directory
eggs/ # Python eggs directory
.eggs/ # Hidden eggs directory
lib/ # Libraries directory
lib64/ # 64-bit libraries directory
parts/ # Parts directory (possibly for build systems)
sdist/ # Source distribution directory
var/ # Variable data files directory
wheels/ # Built wheel packages (*.whl)
*.egg-info/ # Metadata directory for installed Python packages
.installed.cfg # Configuration file for installed packages
*.egg # Python egg files
MANIFEST # Manifest file used in source distributions
# PyInstaller
*.manifest # Manifest files generated by PyInstaller
*.spec # Spec files for PyInstaller
# Installer logs
pip-log.txt # Log file from pip installer
pip-delete-this-directory.txt # File indicating a directory should be deleted
# Unit test / coverage reports
htmlcov/ # HTML coverage reports directory
.tox/ # tox virtual environments directory
.coverage* # Coverage report files
.cache # Cache directory
nosetests.xml # Test results from nosetests
coverage.xml # Coverage report in XML format
*.cover # Coverage data files
.hypothesis/ # Hypothesis testing cache
.pytest_cache/ # pytest cache directory
# Translations
*.mo # Compiled translation files
*.pot # Translation template files
# Other stuff
*.log # Log files (e.g., from Django server)
local_settings.py # Local settings file, should not be versioned
db.sqlite3 # SQLite database file, typically used for development
# Flask stuff
instance/ # Flask instance-specific files (e.g., configuration)
.webassets-cache # Cache for Flask-Assets
# Scrapy stuff
.scrapy # Scrapy project-specific files
# Sphinx documentation
docs/_build/ # Build directory for Sphinx documentation
# PyBuilder
target/ # Target directory for PyBuilder
# Jupyter Notebook
.ipynb_checkpoints # Checkpoint files for Jupyter Notebooks
# pyenv
.python-version # File specifying the Python version for pyenv
# celery beat schedule file
celerybeat-schedule # Celery beat schedule file (persistent)
# SageMath parsed files
*.sage.py # Parsed SageMath files
# Environments
.env # Environment file for storing secrets (e.g., API keys)
.venv # Virtual environment directory
env/ # Environment directory (generic)
ENV/ # Environment directory (alternative capitalization)
# Spyder project settings
.spyderproject # Spyder IDE project settings
# Rope project settings
.ropeproject # Rope IDE project settings
# mkdocs documentation
/site # Site build directory for mkdocs
# mypy
.mypy_cache/ # Cache for mypy type checker
# Debug and temporary files
debug.log # General debug log file
*.tmp # Temporary files
*.bak # Backup files
*.swp # Swap files (e.g., from Vim)
*.swo # Additional swap files