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
| # Byte-compiled / optimized / DLL files
| __pycache__/
| *.py[cod]
|
|
| # Build detritus
| build/
| dist/
| .eggs
| *.egg-info/
|
| # Test detritus
| .tox/
| .pytest_cache/
|
| # Autogenerated version information
| dateutil/_version.py
|
| # Sphinx documentation
| docs/_build/
|
| # Timezone information
| tzdata*.tar.gz
|
| .idea
| .cache
|
|