suhamemon1 commited on
Commit
d4c06ac
1 Parent(s): 848090a
Files changed (1) hide show
  1. .gitignore +55 -0
.gitignore ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+
5
+ # C extensions
6
+ *.so
7
+
8
+ venv
9
+
10
+ ignore_comments.py
11
+ test_mdb.py
12
+
13
+ # Distribution / packaging
14
+ bin/
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # Installer logs
29
+ pip-log.txt
30
+ pip-delete-this-directory.txt
31
+
32
+ # Unit test / coverage reports
33
+ .tox/
34
+ .coverage
35
+ .cache
36
+ nosetests.xml
37
+ coverage.xml
38
+
39
+ # Translations
40
+ *.mo
41
+
42
+ # Mr Developer
43
+ .mr.developer.cfg
44
+ .project
45
+ .pydevproject
46
+
47
+ # Rope
48
+ .ropeproject
49
+
50
+ # Django stuff:
51
+ *.log
52
+ *.pot
53
+
54
+ # Sphinx documentation
55
+ docs/_build/