spinsphotonics / fdtdz

Fast, scalable, accessible photonic simulation
MIT License
110 stars 13 forks source link

Add .gitignore #13

Closed Yaraslaut closed 1 year ago

Yaraslaut commented 1 year ago

Can you please add .gitignore inside repository? if I ran python setup.py build following files are created

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        .eggs/
        build/
        src/fdtdz.egg-info/
        src/fdtdz_jax/fdtdz_jax_version.py

following entries inside .gitignore file will make git ignore files created only for build and install procedures .gitignore

[bB]uild
[bB]uild/**

# artifacts of build
.eggs/
.eggs/**
src/fdtdz.egg-info/**
src/fdtdz_jax/fdtdz_jax_version.py

# artifacts of install
dist/
dist/**