-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
110 lines (97 loc) · 3.53 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
105
106
107
108
109
# =======================================
# Python Compiled Files
# =======================================
# Prevent Python compiled bytecode from being committed
__pycache__/ # Directory containing Python compiled bytecode
*.py[cod] # Python compiled files (.pyc, .pyo, .pyd)
*$py.class # Python compiled files for Jython
# =======================================
# C Extensions
# =======================================
*.so # Shared libraries/objects
# =======================================
# Environment and Secrets
# =======================================
.env # Environment variables file
.secrets.toml # Streamlit secrets file
# =======================================
# Distribution / Packaging
# =======================================
.Python # Symlink to Python interpreter
build/ # Build directory
develop-eggs/ # Development eggs directory
dist/ # Distribution directory
downloads/ # Downloaded dependencies
eggs/ # Eggs directory
.eggs/ # Eggs metadata
lib/ # Library directory
lib64/ # 64-bit library directory
parts/ # Parts directory
sdist/ # Source distribution
var/ # Variable directory
wheels/ # Wheel packages
share/python-wheels/
*.egg-info/ # Egg metadata directory
.installed.cfg # Installation configuration
*.egg # Egg files
MANIFEST # Package manifest
# =======================================
# Testing and Coverage
# =======================================
htmlcov/ # HTML coverage reports
.tox/ # Tox test environments
.nox/ # Nox test environments
.coverage # Coverage data
.coverage.* # Coverage data with extensions
.cache # Cache directory
nosetests.xml # Nose test reports
coverage.xml # Coverage reports
*.cover # Coverage files
*.py,cover
.hypothesis/ # Hypothesis testing
.pytest_cache/ # Pytest cache
cover/ # Coverage directory
# =======================================
# Development Environments
# =======================================
.venv # Virtual environment
env/
venv/
ENV/
env.bak/
venv.bak/
# =======================================
# IDE Specific Files
# =======================================
.idea/ # PyCharm project settings
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.vscode/ # VS Code settings
*.code-workspace # VS Code workspace files
# =======================================
# Project Specific
# =======================================
.streamlit/ # Streamlit configuration directory
secrets.toml # Streamlit secrets file
# Generated Documents
*.docx # Word documents generated by the app
*.md # Markdown files
!README.md # Exception: Include README.md
!requirements.txt # Exception: Include requirements.txt
# Logs
*.log # Log files
logs/ # Log directory
# =======================================
# System Files
# =======================================
.DS_Store # MacOS directory metadata
Thumbs.db # Windows thumbnail cache
# =======================================
# Custom Project Directories
# =======================================
priorversions/ # Ignore the directory containing previous versions of scripts
.env
priorversions/