Added SO-OOF/HAS API document
[optf/osdf.git] / .gitignore
1 # Copied from https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
2 # Copy as of 2018-02-08
3 # github/gitignore is licensed under the
4 # Creative Commons Zero v1.0 Universal
5
6 # Byte-compiled / optimized / DLL files
7 __pycache__/
8 *.py[cod]
9 *$py.class
10
11 # C extensions
12 *.so
13
14 # Distribution / packaging
15 .Python
16 build/
17 develop-eggs/
18 dist/
19 downloads/
20 eggs/
21 .eggs/
22 lib/
23 lib64/
24 parts/
25 sdist/
26 var/
27 wheels/
28 *.egg-info/
29 .installed.cfg
30 *.egg
31 MANIFEST
32
33 # PyInstaller
34 #  Usually these files are written by a python script from a template
35 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
36 *.manifest
37 *.spec
38
39 # Installer logs
40 pip-log.txt
41 pip-delete-this-directory.txt
42
43 # Unit test / coverage reports
44 htmlcov/
45 .tox/
46 .coverage
47 .coverage.*
48 .cache
49 nosetests.xml
50 coverage.xml
51 *.cover
52 .hypothesis/
53 .pytest_cache/
54
55 # Translations
56 *.mo
57 *.pot
58
59 # Django stuff:
60 *.log
61 .static_storage/
62 .media/
63 local_settings.py
64
65 # Flask stuff:
66 instance/
67 .webassets-cache
68
69 # Scrapy stuff:
70 .scrapy
71
72 # Sphinx documentation
73 docs/_build/
74
75 # PyBuilder
76 target/
77
78 # Jupyter Notebook
79 .ipynb_checkpoints
80
81 # pyenv
82 .python-version
83
84 # celery beat schedule file
85 celerybeat-schedule
86
87 # SageMath parsed files
88 *.sage.py
89
90 # Environments
91 .env
92 .venv
93 env/
94 venv/
95 ENV/
96 env.bak/
97 venv.bak/
98
99 # Spyder project settings
100 .spyderproject
101 .spyproject
102
103 # Rope project settings
104 .ropeproject
105
106 # mkdocs documentation
107 /site
108
109 # mypy
110 .mypy_cache/