https://github.com/zerothi/sisl
Raw File
Tip revision: 1f429c39e03dc0b4882d77a9aaea27a15de0ba68 authored by Nick Papior on 04 April 2024, 18:10:25 UTC
small refactor of in [ to in (
Tip revision: 1f429c3
MANIFEST.in
include MANIFEST.in
include LICENSE
include CHANGELOG.md
include README.md

include setup.py
include pyproject.toml
include setup.cfg
exclude DEPLOY.md

prune .git
prune .github
prune benchmarks
prune deprecated
prune developments
prune ci
prune files
prune build
prune _skbuild

# forcefully add this one, not really needed
graft docs
prune docs/build
prune docs/**/generated
graft src
include src/sisl/_version.py
include data

prune __pycache__

# lastly, remove all these files
global-exclude *.py[cod] __pycache__ *.so *.sh
global-exclude *.html .git* CMakeLists.txt

back to top