Skip to content

Commit 6a004ca

Browse files
v0.2
Release v0.2
2 parents 0385393 + 3ed53f1 commit 6a004ca

File tree

201 files changed

+26781
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+26781
-0
lines changed

.gitignore

Lines changed: 335 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,335 @@
1+
### VisualStudioCode template
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
*.code-workspace
8+
9+
# Local History for Visual Studio Code
10+
.history/
11+
12+
### C++ template
13+
# Prerequisites
14+
*.d
15+
16+
# Compiled Object files
17+
*.slo
18+
*.lo
19+
*.o
20+
*.obj
21+
22+
# Precompiled Headers
23+
*.gch
24+
*.pch
25+
26+
# Compiled Dynamic libraries
27+
*.so
28+
*.dylib
29+
*.dll
30+
31+
# Fortran module files
32+
*.mod
33+
*.smod
34+
35+
# Compiled Static libraries
36+
*.lai
37+
*.la
38+
*.a
39+
*.lib
40+
41+
# Executables
42+
*.exe
43+
*.out
44+
*.app
45+
46+
### JetBrains template
47+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
48+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
49+
50+
# User-specific stuff
51+
.idea/**/workspace.xml
52+
.idea/**/tasks.xml
53+
.idea/**/usage.statistics.xml
54+
.idea/**/dictionaries
55+
.idea/**/shelf
56+
57+
# Generated files
58+
.idea/**/contentModel.xml
59+
60+
# Sensitive or high-churn files
61+
.idea/**/dataSources/
62+
.idea/**/dataSources.ids
63+
.idea/**/dataSources.local.xml
64+
.idea/**/sqlDataSources.xml
65+
.idea/**/dynamic.xml
66+
.idea/**/uiDesigner.xml
67+
.idea/**/dbnavigator.xml
68+
69+
# Gradle
70+
.idea/**/gradle.xml
71+
.idea/**/libraries
72+
73+
# Gradle and Maven with auto-import
74+
# When using Gradle or Maven with auto-import, you should exclude module files,
75+
# since they will be recreated, and may cause churn. Uncomment if using
76+
# auto-import.
77+
# .idea/artifacts
78+
# .idea/compiler.xml
79+
# .idea/jarRepositories.xml
80+
# .idea/modules.xml
81+
# .idea/*.iml
82+
# .idea/modules
83+
# *.iml
84+
# *.ipr
85+
86+
# CMake
87+
cmake-build-*/
88+
89+
# Mongo Explorer plugin
90+
.idea/**/mongoSettings.xml
91+
92+
# File-based project format
93+
*.iws
94+
95+
# IntelliJ
96+
out/
97+
98+
# mpeltonen/sbt-idea plugin
99+
.idea_modules/
100+
101+
# JIRA plugin
102+
atlassian-ide-plugin.xml
103+
104+
# Cursive Clojure plugin
105+
.idea/replstate.xml
106+
107+
# Crashlytics plugin (for Android Studio and IntelliJ)
108+
com_crashlytics_export_strings.xml
109+
crashlytics.properties
110+
crashlytics-build.properties
111+
fabric.properties
112+
113+
# Editor-based Rest Client
114+
.idea/httpRequests
115+
116+
# Android studio 3.1+ serialized cache file
117+
.idea/caches/build_file_checksums.ser
118+
119+
### VirtualEnv template
120+
# Virtualenv
121+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
122+
.Python
123+
[Bb]in
124+
[Ii]nclude
125+
[Ll]ib
126+
[Ll]ib64
127+
[Ll]ocal
128+
[Ss]cripts
129+
pyvenv.cfg
130+
.venv
131+
pip-selfcheck.json
132+
133+
### Example user template template
134+
### Example user template
135+
136+
# IntelliJ project files
137+
.idea
138+
*.iml
139+
out
140+
gen
141+
### Windows template
142+
# Windows thumbnail cache files
143+
Thumbs.db
144+
Thumbs.db:encryptable
145+
ehthumbs.db
146+
ehthumbs_vista.db
147+
148+
# Dump file
149+
*.stackdump
150+
151+
# Folder config file
152+
[Dd]esktop.ini
153+
154+
# Recycle Bin used on file shares
155+
$RECYCLE.BIN/
156+
157+
# Windows Installer files
158+
*.cab
159+
*.msi
160+
*.msix
161+
*.msm
162+
*.msp
163+
164+
# Windows shortcuts
165+
*.lnk
166+
167+
### macOS template
168+
# General
169+
.DS_Store
170+
.AppleDouble
171+
.LSOverride
172+
173+
# Icon must end with two \r
174+
Icon
175+
176+
# Thumbnails
177+
._*
178+
179+
# Files that might appear in the root of a volume
180+
.DocumentRevisions-V100
181+
.fseventsd
182+
.Spotlight-V100
183+
.TemporaryItems
184+
.Trashes
185+
.VolumeIcon.icns
186+
.com.apple.timemachine.donotpresent
187+
188+
# Directories potentially created on remote AFP share
189+
.AppleDB
190+
.AppleDesktop
191+
Network Trash Folder
192+
Temporary Items
193+
.apdisk
194+
195+
### Python template
196+
# Byte-compiled / optimized / DLL files
197+
__pycache__/
198+
*.py[cod]
199+
*$py.class
200+
201+
# C extensions
202+
*.so
203+
204+
# Distribution / packaging
205+
.Python
206+
build/
207+
develop-eggs/
208+
dist/
209+
downloads/
210+
eggs/
211+
.eggs/
212+
lib/
213+
lib64/
214+
parts/
215+
sdist/
216+
var/
217+
wheels/
218+
share/python-wheels/
219+
*.egg-info/
220+
.installed.cfg
221+
*.egg
222+
MANIFEST
223+
224+
# PyInstaller
225+
# Usually these files are written by a python script from a template
226+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
227+
*.manifest
228+
*.spec
229+
230+
# Installer logs
231+
pip-log.txt
232+
pip-delete-this-directory.txt
233+
234+
# Unit test / coverage reports
235+
htmlcov/
236+
.tox/
237+
.nox/
238+
.coverage
239+
.coverage.*
240+
.cache
241+
nosetests.xml
242+
coverage.xml
243+
*.cover
244+
*.py,cover
245+
.hypothesis/
246+
.pytest_cache/
247+
cover/
248+
249+
# Translations
250+
*.mo
251+
*.pot
252+
253+
# Django stuff:
254+
*.log
255+
local_settings.py
256+
db.sqlite3
257+
db.sqlite3-journal
258+
259+
# Flask stuff:
260+
instance/
261+
.webassets-cache
262+
263+
# Scrapy stuff:
264+
.scrapy
265+
266+
# Sphinx documentation
267+
docs/_build/
268+
269+
# PyBuilder
270+
.pybuilder/
271+
target/
272+
273+
# Jupyter Notebook
274+
.ipynb_checkpoints
275+
276+
# IPython
277+
profile_default/
278+
ipython_config.py
279+
280+
# pyenv
281+
# For a library or package, you might want to ignore these files since the code is
282+
# intended to run in multiple environments; otherwise, check them in:
283+
# .python-version
284+
285+
# pipenv
286+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
287+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
288+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
289+
# install all needed dependencies.
290+
#Pipfile.lock
291+
292+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
293+
__pypackages__/
294+
295+
# Celery stuff
296+
celerybeat-schedule
297+
celerybeat.pid
298+
299+
# SageMath parsed files
300+
*.sage.py
301+
302+
# Environments
303+
.env
304+
.venv
305+
env/
306+
venv/
307+
ENV/
308+
env.bak/
309+
venv.bak/
310+
311+
# Spyder project settings
312+
.spyderproject
313+
.spyproject
314+
315+
# Rope project settings
316+
.ropeproject
317+
318+
# mkdocs documentation
319+
/site
320+
321+
# mypy
322+
.mypy_cache/
323+
.dmypy.json
324+
dmypy.json
325+
326+
# Pyre type checker
327+
.pyre/
328+
329+
# pytype static type analyzer
330+
.pytype/
331+
332+
# Cython debug symbols
333+
cython_debug/
334+
335+
app/src/notebooks/quanvolution/*

0 commit comments

Comments
 (0)