.gitignore 517 Bytes
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
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
# Python temp files
**/__pycache__/
**/*.py~
**/*.pyc

# Python virtualenv folder
**/venv/

# IDE Project files
**/.idea/
**/.vscode/
**/*.swp

# MacOS folder attributes files
**/*.DS_Store

# Files created during testing
/_build/
test_reports.xml

**/.cache
**/.pytest_cache/

# Compiled python modules.
**/.pyc

# Setuptools distribution folder.
**/build/
**/dist/

# Code coverage
**/.coverage

# log
*.log
# Python egg metadata, regenerated from source files by setuptools.
**/*.egg-info
**/*.rdb

**/_version.py