-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.gitignore
executable file
·45 lines (39 loc) · 945 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Build files
Orange3_Recommendation.egg-info
Orange3_Recommendation.egg-info/*
llvmlite
llvmlite/*
# Documentation
doc/build
doc/build/*
doc/source/_static
doc/source/_static/*
doc/source/_templates
doc/source/_templates/*
# Virtual environment
orange3venv-recsys/
# Unversioned files
*.pyc
# Editor files
.idea
.idea/*
# Others
*~
.project
.pydevproject
.settings/*
.DS_Store
# Coverage
.coverage
coverage.xml
orangecontrib/__pycache__/
orangecontrib/recommendation/__pycache__/
orangecontrib/recommendation/baseline/__pycache__/
orangecontrib/recommendation/evaluation/__pycache__/
orangecontrib/recommendation/ranking/__pycache__/
orangecontrib/recommendation/rating/__pycache__/
orangecontrib/recommendation/tests/__pycache__/
orangecontrib/recommendation/tests/coverage/__pycache__/
orangecontrib/recommendation/tutorials/__pycache__/
orangecontrib/recommendation/utils/__pycache__/
orangecontrib/recommendation/widgets/__pycache__/