Merlintxu commited on
Commit
dc72622
·
1 Parent(s): a1743d7

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +68 -0
.gitignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # .gitignore
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyd
5
+ *.pyo
6
+ *.pyz
7
+ *.pyzw
8
+
9
+ # If you are using PyCharm
10
+ .idea/
11
+
12
+ # If you are using Jupyter notebooks
13
+ .ipynb_checkpoints/
14
+
15
+ # Python artifacts
16
+ *.egg-info/
17
+ dist/
18
+ build/
19
+ eggs/
20
+ parts/
21
+ var/
22
+ sdist/
23
+ develop-eggs/
24
+ .installed.cfg
25
+ lib/
26
+ lib64/
27
+ *.egg
28
+
29
+ # Installer logs
30
+ pip-log.txt
31
+ pip-delete-this-directory.txt
32
+
33
+ # Unit test / coverage reports
34
+ htmlcov/
35
+ .tox/
36
+ .coverage
37
+ .coverage.*
38
+ .cache
39
+ nosetests.xml
40
+ coverage.xml
41
+ *.cover
42
+ .hypothesis/
43
+ .pytest_cache/
44
+
45
+ # Jupyter Notebook
46
+ .ipynb_checkpoints
47
+
48
+ # pyenv
49
+ .python-version
50
+
51
+ # celery beat schedule file
52
+ celerybeat-schedule
53
+
54
+ # dotenv
55
+ .env
56
+
57
+ # virtualenv
58
+ .venv
59
+ env/
60
+ venv/
61
+ ENV/
62
+
63
+ # Spyder project settings
64
+ .spyderproject
65
+ .spyproject
66
+
67
+ # Rope project settings
68
+ .ropeproject