From ea7ab9fa85e43ba0d0b0040e8c21aefe91931f3a Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Thu, 4 Mar 2021 18:48:59 +0100 Subject: [PATCH] gitignore: add pip files, pip: add proper README --- .gitignore | 9 +++++++++ pip/makefile | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 179bf14..e09f7f7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,12 @@ cython/*.cpp *.parquet src/*.cpp.cpp + +pip/*.cpp +pip/*.hpp +pip/*.pyx +pip/*.pxd +pip/README.md +pip/LICENSE +pip/*egg-info +pip/dist/ diff --git a/pip/makefile b/pip/makefile index dcf1963..e94d1e9 100644 --- a/pip/makefile +++ b/pip/makefile @@ -7,7 +7,7 @@ publish: sdist upload sdist: ../cython/py_imc_termite.pyx ../cython/imc_termite.pxd ../cython/py_imc_termite.cpp cp -v $? ./ cp -v $(shell ls ../lib/imc_*.hpp) ./ - tail -n $(($(cat README.md | wc -l)-10)) README.md > ./README.md + tail -n 212 ../README.md > ./README.md cp -v ../LICENSE ./ python3 setup.py sdist