Skip to content

Commit 129e148

Browse files
committed
manual migrate from TIK GitHub
1 parent ea4de93 commit 129e148

Some content is hidden

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

46 files changed

+13917
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SCM syntax highlighting & preventing 3-way merges
2+
pixi.lock merge=binary linguist-language=YAML linguist-generated=true

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
# Check for updates to GitHub Actions every week
12+
interval: "weekly"

.github/pull_request_template.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- Add a short description of your contribution here. Skip this if the title is self-explanatory -->
2+
3+
Checklist:
4+
5+
- [ ] I made sure that the CI passed before I ask for a review.
6+
- [ ] I added a summary of the changes (compared to the last release) in the `CHANGELOG.md`.
7+
- [ ] If necessary, I made changes to the documentation and/or added new content.
8+
- [ ] I will remember to squash-and-merge, providing a useful summary of the changes of this PR.

.gitignore

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
# Ignore build directories
2+
build/
3+
bin/
4+
lib/
5+
lib64/
6+
*/build*/
7+
8+
# Ignore CMake generated files
9+
CMakeFiles/
10+
CMakeCache.txt
11+
cmake_install.cmake
12+
Makefile
13+
CMakeLists.txt.user*
14+
.cmake/
15+
16+
# Ignore compiled binaries and executables
17+
*.exe
18+
*.out
19+
*.app
20+
*.so
21+
*.dylib
22+
23+
# Ignore object files and libraries
24+
*.o
25+
*.a
26+
*.lib
27+
28+
# Ignore editor-specific files
29+
.vscode/
30+
.idea/
31+
*.vs/
32+
*.suo
33+
*.ntvs*
34+
*.njsproj
35+
*.sln
36+
*.suo
37+
*.swp
38+
*.sln.docstates
39+
*.user
40+
*.userosscache
41+
*.suo
42+
*.tsserver.log.*
43+
*.dbmdl
44+
*.dbproj
45+
*.jfm
46+
*.pfx
47+
*.publishsettings
48+
node_modules/
49+
bower_components/
50+
51+
# Ignore OS generated files
52+
.DS_Store
53+
.DS_Store?
54+
._*
55+
.Spotlight-V100
56+
.Trashes
57+
ehthumbs.db
58+
Thumbs.db
59+
60+
# Ignore package manager directories
61+
pip-wheel-metadata/
62+
63+
!fans_input.grid.json
64+
!fans_input.slides.json
65+
66+
# C extensions
67+
*.so
68+
69+
# PyInstaller
70+
# Usually these files are written by a python script from a template
71+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
72+
*.manifest
73+
*.spec
74+
75+
# Installer logs
76+
pip-log.txt
77+
pip-delete-this-directory.txt
78+
79+
# Translations
80+
*.mo
81+
*.pot
82+
83+
# Django stuff:
84+
*.log
85+
local_settings.py
86+
db.sqlite3
87+
db.sqlite3-journal
88+
89+
# Flask stuff:
90+
instance/
91+
.webassets-cache
92+
93+
# Scrapy stuff:
94+
.scrapy
95+
96+
# Sphinx documentation
97+
docs/_build/
98+
docs/_static/
99+
docs/_autosummary/
100+
101+
# Jupyter Notebook
102+
.ipynb_checkpoints
103+
104+
# IPython
105+
profile_default/
106+
ipython_config.py
107+
108+
# pyenv
109+
.python-version
110+
111+
# celery beat schedule file
112+
celerybeat-schedule
113+
114+
# SageMath parsed files
115+
*.sage.py
116+
117+
# Spyder project settings
118+
.spyderproject
119+
.spyproject
120+
121+
# Rope project settings
122+
.ropeproject
123+
124+
# MkDocs documentation
125+
/site
126+
127+
# mypy
128+
.mypy_cache/
129+
.dmypy.json
130+
dmypy.json
131+
132+
# Pyre type checker
133+
.pyre/
134+
135+
# pyright type checker
136+
.pyright/
137+
138+
# End of standard Python ignores
139+
140+
# Byte-compiled / optimized / DLL files
141+
__pycache__/
142+
*.py[cod]
143+
*$py.class
144+
145+
# Distribution / packaging
146+
.Python
147+
build/
148+
develop-eggs/
149+
dist/
150+
downloads/
151+
eggs/
152+
.eggs/
153+
lib/
154+
lib64/
155+
parts/
156+
sdist/
157+
var/
158+
wheels/
159+
share/python-wheels/
160+
*.egg-info/
161+
.installed.cfg
162+
*.egg
163+
MANIFEST
164+
165+
# Unit test / coverage reports
166+
htmlcov/
167+
.tox/
168+
.nox/
169+
.coverage
170+
.coverage.*
171+
.cache
172+
nosetests.xml
173+
coverage.xml
174+
*.cover
175+
*.py,cover
176+
.hypothesis/
177+
.pytest_cache/
178+
cover/
179+
180+
# Environments
181+
.pixi
182+
.python-version
183+
.env
184+
.venv
185+
env/
186+
venv/
187+
ENV/
188+
env.bak/
189+
venv.bak/
190+
191+
# Sphinx documentation
192+
docs/build/
193+
194+
# Dedicated folder for personal projects
195+
**/scratch/
196+
197+
*.out
198+
*.h5
199+
junk/
200+
overleaf/

.pre-commit-config.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v2.3.0
4+
hooks:
5+
- id: check-xml
6+
- id: check-merge-conflict
7+
- id: mixed-line-ending
8+
- id: end-of-file-fixer
9+
- id: trailing-whitespace
10+
# black repo for python formatting
11+
- repo: https://github.com/ambv/black
12+
rev: 22.12.0
13+
hooks:
14+
- id: black

CITATION.cff

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
cff-version: "1.2.0"
2+
authors:
3+
- family-names: Keshav
4+
given-names: Sanath
5+
orcid: "https://orcid.org/0000-0002-9131-4560"
6+
- family-names: Herb
7+
given-names: Julius
8+
orcid: "https://orcid.org/0000-0003-1628-6667"
9+
- family-names: Fritzen
10+
given-names: Felix
11+
orcid: "https://orcid.org/0000-0003-4926-0068"
12+
preferred-citation:
13+
authors:
14+
- family-names: Keshav
15+
given-names: Sanath
16+
orcid: "https://orcid.org/0000-0003-0477-3441"
17+
- family-names: Herb
18+
given-names: Julius
19+
orcid: "https://orcid.org/0000-0003-0477-3441"
20+
- family-names: Fritzen
21+
given-names: Felix
22+
orcid: "https://orcid.org/0000-0003-4926-0068"
23+
# date-published: 2017-11-30
24+
doi: 10.1002/gamm.70005
25+
issn: 1522-2608
26+
issue: 3
27+
journal: GAMM Mitteilungen
28+
publisher:
29+
name: Wiley
30+
title: "Spectral Normalization and Voigt-Reuss net: A universal approach to microstructure-property forecasting with physical guarantees"
31+
type: article
32+
url: "https://doi.org/10.1002/gamm.70005"
33+
# volume: 62
34+
title: "Spectral Normalization and Voigt-Reuss net: A universal approach to microstructure-property forecasting with physical guarantees"

0 commit comments

Comments
 (0)