Enhance package build process

Updated .gitignore to exclude distribution directories, preventing accidental inclusion in the repository. Added MANIFEST.in to specify additional files for source distribution, ensuring that necessary Cython and C source files are packaged correctly.
This commit is contained in:
Kumi 2024-02-08 15:19:25 +01:00
parent 4d2b00a30d
commit a8d562c046
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View file

@ -60,6 +60,7 @@ __pycache__/
build/
*.c
*.cpp
dist/
src/limedriver.egg-info
# Data

3
MANIFEST.in Normal file
View file

@ -0,0 +1,3 @@
include src/limedriver/*.pyx
include extern/limedriver/src/*
include extern/limedriver/*