Skip to content

Commit ee66d0e

Browse files
authored
Merge pull request #9 from python-project-templates/timkpaine-patch-3
Update .gitignore for newer artifacts
2 parents bc14cab + 2180128 commit ee66d0e

File tree

1 file changed

+84
-53
lines changed

1 file changed

+84
-53
lines changed

.gitignore

Lines changed: 84 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,31 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
8-
# Runtime data
9-
pids
10-
*.pid
11-
*.seed
12-
*.pid.lock
13-
14-
# Dependency directories
15-
node_modules/
16-
17-
# Linting
18-
.eslintcache
19-
.mypy_cache/
20-
21-
# Output of 'npm pack'
22-
*.tgz
23-
24-
# Yarn Integrity file
25-
.yarn-integrity
26-
27-
# dotenv environment variables file
28-
.env
29-
.venv
30-
venv/
31-
ENV/
32-
331
# Byte-compiled / optimized / DLL files
342
__pycache__/
353
*.py[cod]
364
*$py.class
375

6+
# C extensions
7+
*.so
8+
389
# Distribution / packaging
3910
.Python
40-
env/
11+
build/
4112
develop-eggs/
4213
dist/
4314
downloads/
4415
eggs/
4516
.eggs/
17+
lib/
18+
lib64/
4619
parts/
4720
sdist/
4821
var/
4922
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
5025
*.egg-info/
5126
.installed.cfg
5227
*.egg
28+
MANIFEST
5329

5430
# PyInstaller
5531
# Usually these files are written by a python script from a template
@@ -70,34 +46,89 @@ htmlcov/
7046
.cache
7147
nosetests.xml
7248
coverage.xml
49+
junit.xml
7350
*.cover
51+
*.py,cover
7452
.hypothesis/
75-
lib-cov
76-
coverage
77-
python_junit.xml
78-
junit.xml
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# PyBuilder
73+
target/
74+
75+
# IPython
76+
profile_default/
77+
ipython_config.py
78+
79+
# pyenv
80+
.python-version
81+
82+
# pipenv
83+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
84+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
85+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
86+
# install all needed dependencies.
87+
#Pipfile.lock
88+
89+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
90+
__pypackages__/
91+
92+
# Celery stuff
93+
celerybeat-schedule
94+
celerybeat.pid
95+
96+
# SageMath parsed files
97+
*.sage.py
98+
99+
# Environments
100+
.env
101+
.venv
102+
env/
103+
venv/
104+
ENV/
105+
env.bak/
106+
venv.bak/
107+
108+
# Spyder project settings
109+
.spyderproject
110+
.spyproject
111+
112+
# Rope project settings
113+
.ropeproject
114+
115+
# mkdocs documentation
116+
/site
117+
118+
# mypy
119+
.mypy_cache/
120+
.dmypy.json
121+
dmypy.json
122+
123+
# Pyre type checker
124+
.pyre/
79125

80126
# Documentation
81127
docs/_build/
82128
/site
83129
docs/api
84130
docs/index.md
85-
86-
# Build assets
87-
bin/
88-
build/
89-
_skbuild/
90-
target/
91-
lib/
92-
lib64/
93-
python_template/bin/
94-
python_template/include/
95-
python_template/lib/
96-
*.so
97-
*.tsbuildinfo
98-
python_template/extension
99-
python_template/nbextension
100-
python_template/labextension
131+
_template/labextension
101132

102133
# Jupyter
103134
.ipynb_checkpoints

0 commit comments

Comments
 (0)