-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish wheels with github actions (#1063)
- Loading branch information
Showing
6 changed files
with
28 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
exclude * | ||
prune * | ||
include LICENSE | ||
include NOTICE | ||
include *.rst | ||
global-include CMakeLists.txt | ||
include setup.py | ||
include pyproject.toml | ||
include requirements-dev.txt | ||
graft histomicstk | ||
global-exclude *.py[co] __pycache__ |
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 |
---|---|---|
|
@@ -46,7 +46,7 @@ def prerelease_local_scheme(version): | |
author='Kitware, Inc.', | ||
author_email='[email protected]', | ||
url='https://github.com/DigitalSlideArchive/HistomicsTK', | ||
packages=find_packages(exclude=['tests', '*_test']), | ||
packages=find_packages(exclude=['tests', '*_test*']), | ||
package_dir={ | ||
'histomicstk': 'histomicstk', | ||
}, | ||
|