Closed Yaraslaut closed 1 year ago
Can you please add .gitignore inside repository? if I ran python setup.py build following files are created
python setup.py build
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
build
install
.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/**
Can you please add .gitignore inside repository? if I ran
python setup.py build
following files are createdfollowing entries inside .gitignore file will make git ignore files created only for
build
andinstall
procedures.gitignore