-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
still need to find some bug with int32 vs long
- Loading branch information
Showing
4 changed files
with
25 additions
and
23 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
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,15 +1,18 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = [ | ||
"packaging==20.5; platform_machine=='arm64'", # macos M1 | ||
"setuptools==59.2.0", | ||
"wheel==0.37.0", | ||
"Cython", # Note: keep in sync with tools/cythonize.py | ||
requires = ["flit_core >=2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[project] | ||
name = "optv" | ||
version = "0.3.0" | ||
description = "OpenPTV " | ||
authors = [ | ||
{ name="Alex Liberzon", email="[email protected]"} | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"cython" | ||
] | ||
|
||
[tool.cibuildwheel] | ||
before-build = "pip install numpy cython && cd py_bind && python setup.py prepare" | ||
test-requires = ["nose","six"] | ||
test-command = "cd {project}/py_bind/test && nosetests" | ||
skip = ["cp310-*","pp*"] |
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