Skip to content

Commit

Permalink
install: add MANIFEST.in and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jul 3, 2024
1 parent 1e669e5 commit e7ece11
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include python/zfpy.pxd
include python/zfpy.pyx
recursive-include include *.h
recursive-include src *.c *.h
include LICENSE
include pyproject.toml
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[build-system]
requires = [
"setuptools",
"wheel",
"cython",
"oldest-supported-numpy; python_version<'3.9'",
'numpy; python_version>="3.9"',
]

0 comments on commit e7ece11

Please sign in to comment.