Mengkang Hu commited on
Commit
15d7a18
·
2 Parent(s): 59c8e4e efed398

Merge pull request #34 from camel-ai/fixgitignore

Browse files
Files changed (1) hide show
  1. .gitignore +50 -0
.gitignore CHANGED
@@ -1,6 +1,56 @@
 
 
 
 
 
 
 
 
 
 
1
  .dist
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  .DS_Store
 
 
3
  owl/data
4
  owl/tmp
5
  owl/.env
6
  owl/utils/__pycache__/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ **/__pycache__/
4
+ */__pycache__/*
5
+ *.py[cod]
6
+ *$py.class
7
+ *.so
8
+ .Python
9
+ build/
10
+ develop-eggs/
11
  .dist
12
+ downloads/
13
+ eggs/
14
+ .eggs/
15
+ lib/
16
+ lib64/
17
+ parts/
18
+ sdist/
19
+ var/
20
+ wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+
25
+ # Virtual Environment
26
+ venv/
27
+ env/
28
+ ENV/
29
+ .env
30
+
31
+ # IDE
32
+ .idea/
33
+ .vscode/
34
+ *.swp
35
+ *.swo
36
  .DS_Store
37
+
38
+ # Project specific
39
  owl/data
40
  owl/tmp
41
  owl/.env
42
  owl/utils/__pycache__/
43
+
44
+ # Logs
45
+ *.log
46
+ logs/
47
+ log/
48
+
49
+ # Coverage reports
50
+ htmlcov/
51
+ .tox/
52
+ .coverage
53
+ .coverage.*
54
+ .cache
55
+ coverage.xml
56
+ *.cover