Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Distribution / packaging
############
build/
node_modules/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.coverage
.coverage*
bin
doc/package-lock.json
doc/package.json

# Logs and databases #
######################
*.log
*.sql
*.sqlite
*.out
out
logs


# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db


# python, gmsh and paraview generated #
###################

*.msh
*.pyc
*.npz
*.pvtu
*.vtu
*.pvd
*.hdf5


# data, tmp and pycache #
###################
tmp/
__pycache__/
_build/
gen_modules/
auto_examples/
doc/examples/
doc/tutorials/
.pytest_cache/
.hypothesis/
.coverage
htmlcov/
coverage.xml
pylint.html
pylint.json
.ipynb_checkpoints


# Doc css (we use less to generate those):
doc/_custom/static/css/*.css
doc/generated
doc/biblio

examples/benchmarks/kaggle/nannos*

# include fonts
!doc/_assets/*.zip

# include test data directory
!tests/data/
!tests/data/*

# include benchmarks results
!examples/benchmarks/*/*.npz
394 changes: 394 additions & 0 deletions examples/examples_tmm_migration_fast.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = 'tmm_fast is a lightweight package to speed up optical planar mult
readme = "README.md"
requires-python = ">=3.7"
keywords = ["one", "two"]
license = {text = "MIT"}
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
]
Expand Down