Add to_directory method to relevant object classes
[oam.git] / code / network-generator / .gitignore
1 # Copyright 2023 highstreet technologies GmbH
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15 # This temporary gitignore just hides code artifacts which are not ready to 
16 # be published now. 
17
18 distribution
19 docs
20 mkdocs.yaml
21 setup.py
22
23 # coverage
24 .coverage
25 coverage.xml
26
27 # Byte-compiled / optimized / DLL files
28 __pycache__/
29 *.py[cod]
30 *$py.class
31
32 # C extensions
33 *.so
34
35 # Distribution / packaging
36 .Python
37 build/
38 develop-eggs/
39 dist/
40 downloads/
41 eggs/
42 .eggs/
43 lib/
44 lib64/
45 parts/
46 sdist/
47 var/
48 wheels/
49 pip-wheel-metadata/
50 share/python-wheels/
51 *.egg-info/
52 .installed.cfg
53 *.egg
54 MANIFEST
55
56 # PyInstaller
57 #  Usually these files are written by a python script from a template
58 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
59 *.manifest
60 *.spec
61
62 # Installer logs
63 pip-log.txt
64 pip-delete-this-directory.txt
65
66 # Unit test / coverage reports
67 htmlcov/
68 .tox/
69 .nox/
70 .coverage
71 .coverage.*
72 .cache
73 nosetests.xml
74 coverage.xml
75 *.cover
76 *.py,cover
77 .hypothesis/
78 .pytest_cache/
79
80 # Translations
81 *.mo
82 *.pot
83
84 # Django stuff:
85 *.log
86 local_settings.py
87 db.sqlite3
88 db.sqlite3-journal
89
90 # Flask stuff:
91 instance/
92 .webassets-cache
93
94 # Scrapy stuff:
95 .scrapy
96
97 # Sphinx documentation
98 docs/_build/
99
100 # PyBuilder
101 target/
102
103 # Jupyter Notebook
104 .ipynb_checkpoints
105
106 # IPython
107 profile_default/
108 ipython_config.py
109
110 # pyenv
111 .python-version
112
113 # pipenv
114 #   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
115 #   However, in case of collaboration, if having platform-specific dependencies or dependencies
116 #   having no cross-platform support, pipenv may install dependencies that don't work, or not
117 #   install all needed dependencies.
118 #Pipfile.lock
119
120 # PEP 582; used by e.g. github.com/David-OConnor/pyflow
121 __pypackages__/
122
123 # Celery stuff
124 celerybeat-schedule
125 celerybeat.pid
126
127 # SageMath parsed files
128 *.sage.py
129
130 # Environments
131 .env
132 .venv
133 .oam
134 env/
135 venv/
136 ENV/
137 env.bak/
138 venv.bak/
139
140 # Spyder project settings
141 .spyderproject
142 .spyproject
143
144 # Rope project settings
145 .ropeproject
146
147 # mkdocs documentation
148 /site
149
150 # mypy
151 .mypy_cache/
152 .dmypy.json
153 dmypy.json
154
155 # Pyre type checker
156 .pyre/
157
158 # templates
159 .github/templates/*