Skip to content

Commit bbc303b

Browse files
committed
.gitignore: update .gitignore file and remove excluded files
A lot of things needed to be excluded. Used https://github.com/github/gitignore/blob/main/Python.gitignore as a base. Removed the egg-info folder which should not be in git. Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
1 parent f42aeee commit bbc303b

6 files changed

Lines changed: 54 additions & 52 deletions

File tree

.gitignore

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
1-
*.spec
1+
# Generated files
22
PKG-INFO
33
setup.py
44
version.py
5-
lib/ovirtsdk4/__pycache__/
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
34+
# PyInstaller
35+
# Usually these files are written by a python script from a template
36+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37+
*.manifest
38+
*.spec
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.py,cover
55+
.hypothesis/
56+
.pytest_cache/
57+
cover/

lib/ovirt_engine_sdk_python.egg-info/PKG-INFO.in

Lines changed: 0 additions & 18 deletions
This file was deleted.

lib/ovirt_engine_sdk_python.egg-info/SOURCES.txt

Lines changed: 0 additions & 29 deletions
This file was deleted.

lib/ovirt_engine_sdk_python.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/ovirt_engine_sdk_python.egg-info/requires.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/ovirt_engine_sdk_python.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)