-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch extension building to setuptools (#23)
This was never an officially supported poetry use-case, even though it was nice to have consistent locking. Other more modern/nicer solutions don't seem to handle extensions without added complication (e.g. hatchling is nice, but unless you already use cmake or cython only, this seems to fall between the gaps a little), so just use plain setuptools.
- Loading branch information
Showing
18 changed files
with
5,867 additions
and
6,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
setup.py | ||
.vscode/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include cbflib/src/*.c | ||
include cbflib/include/*.h | ||
include pycbf_wrap.c | ||
include src/**/*.pyx | ||
include src/**/*.pxd | ||
include src/**/*.pyi | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Switch to setuptools extension building. |
Oops, something went wrong.