-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VS2019 Platform Tools support (v142), Added Matthews Correlation Coefficient performance metric, Python build pipeline enhancements with mac support and a python fix to update_to_binary.
- Loading branch information
1 parent
eb6bd71
commit 7324ec8
Showing
18 changed files
with
817 additions
and
28 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
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,5 +1,6 @@ | ||
import sys | ||
from setuptools import setup | ||
from pathlib import Path | ||
from pybind11.setup_helpers import Pybind11Extension | ||
|
||
cflags = [] | ||
|
@@ -15,12 +16,19 @@ | |
), | ||
] | ||
|
||
# Read contents from the README | ||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
if __name__ == "__main__": | ||
setup( | ||
author="Brandon M. Petty", | ||
author_email="[email protected]", | ||
name="doxapy", | ||
description="An image binarization library focussing on local adaptive thresholding", | ||
version="0.9.0", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
version="0.9.1", | ||
url="https://github.com/brandonmpetty/doxa", | ||
license="CC0-1.0", | ||
ext_modules=ext_modules | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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
Oops, something went wrong.