-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
69 lines (60 loc) · 928 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Git Ignore Configuration
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~~~~~ Editor files ~~~~~~~~~~
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
.history
.history/*
# PyCharm
.idea/*
# ~~~~~~~~~~ Environments ~~~~~~~~~~
# Environment variables
.env
env/
ENV/
env.bak/
# Virutal environments
.venv
venv/
venv.bak/
# ~~~~~~~~~~ Build ~~~~~~~~~~
# Caches
.cache
__pycache__/
*.py[cod]
*$py.class
# Builder
.pybuilder/
target/
# Distribution / Packaging
.Python
lib/
var/
dist/
build/
lib64/
downloads/
.installed.cfg
MANIFEST
# ~~~~~~~~~~ Unit tests / Reports ~~~~~~~~~~
# Unit tests
.tox/
.nox/
# Coverage
*.cover
.coverage
.coverage.*
coverage.xml
*.py,cover
cover/
htmlcov/
# Unit test reports
nosetests.xml
.hypothesis/
.pytest_cache/