Skip to content

Commit 5ee3ad8

Browse files
committed
gitignore: Ignore pip-wheel-metadata/
1 parent f97a131 commit 5ee3ad8

File tree

1 file changed

+114
-4
lines changed

1 file changed

+114
-4
lines changed

.gitignore

Lines changed: 114 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
.env
21
.DS_Store
32

4-
*.log
53
*.sql
6-
*.pyc
74

8-
.cache/
95
.vscode/
106
.idea/
117
.vim/
@@ -18,3 +14,117 @@ sample-code/drm/buydrm/keys/user_private_key.pem
1814
sample-code/drm/buydrm/keys/user_public_cert.pem
1915

2016
LONG_DESCRIPTION.md
17+
18+
# PyInstaller
19+
# Usually these files are written by a python script from a template
20+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
21+
*.manifest
22+
*.spec
23+
24+
# Installer logs
25+
pip-log.txt
26+
pip-delete-this-directory.txt
27+
28+
# Unit test / coverage reports
29+
htmlcov/
30+
.tox/
31+
.nox/
32+
.coverage
33+
.coverage.*
34+
.cache
35+
nosetests.xml
36+
coverage.xml
37+
*.cover
38+
*.py,cover
39+
.hypothesis/
40+
.pytest_cache/
41+
cover/
42+
43+
# Translations
44+
*.mo
45+
*.pot
46+
47+
# Django stuff:
48+
*.log
49+
local_settings.py
50+
db.sqlite3
51+
db.sqlite3-journal
52+
53+
# Flask stuff:
54+
instance/
55+
.webassets-cache
56+
57+
# Scrapy stuff:
58+
.scrapy
59+
60+
# Sphinx documentation
61+
docs/_build/
62+
63+
# PyBuilder
64+
.pybuilder/
65+
target/
66+
67+
# Jupyter Notebook
68+
.ipynb_checkpoints
69+
70+
# IPython
71+
profile_default/
72+
ipython_config.py
73+
74+
# pyenv
75+
# For a library or package, you might want to ignore these files since the code is
76+
# intended to run in multiple environments; otherwise, check them in:
77+
# .python-version
78+
79+
# pipenv
80+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
81+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
82+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
83+
# install all needed dependencies.
84+
#Pipfile.lock
85+
86+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
87+
__pypackages__/
88+
89+
# Celery stuff
90+
celerybeat-schedule
91+
celerybeat.pid
92+
93+
# SageMath parsed files
94+
*.sage.py
95+
96+
# Environments
97+
.env
98+
.venv
99+
env/
100+
venv/
101+
ENV/
102+
env.bak/
103+
venv.bak/
104+
105+
# Spyder project settings
106+
.spyderproject
107+
.spyproject
108+
109+
# Rope project settings
110+
.ropeproject
111+
112+
# mkdocs documentation
113+
/site
114+
115+
# mypy
116+
.mypy_cache/
117+
.dmypy.json
118+
dmypy.json
119+
120+
# Pyre type checker
121+
.pyre/
122+
123+
# pytype static type analyzer
124+
.pytype/
125+
126+
# Cython debug symbols
127+
cython_debug/
128+
129+
# Pip
130+
pip-wheel-metadata/

0 commit comments

Comments
 (0)