-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update build and publishing workflow
- Loading branch information
1 parent
16db8d3
commit 79fa061
Showing
2 changed files
with
19 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ jobs: | |
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
environment: release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
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 |
---|---|---|
|
@@ -3,24 +3,33 @@ name = tensorhue | |
version = attr: tensorhue.__version__ | ||
author = epistoteles | ||
author_email = <[email protected]> | ||
description = | ||
description = TensorHue lets you visualize tensors in your console. | ||
long_description_content_type = text/markdown | ||
long_description = | ||
TensorHue is a Python library that allows you to visualize tensors right in your console, making understanding and debugging tensor contents easier. | ||
|
||
Learn more at: https://github.com/epistoteles/tensorhue | ||
install_requires = | ||
numpy | ||
rich | ||
matplotlib | ||
keywords = | ||
classifiers= | ||
"Development Status :: 1 - Planning" | ||
"Intended Audience :: Developers" | ||
"Programming Language :: Python :: 3" | ||
"Operating System :: Unix" | ||
"Operating System :: MacOS :: MacOS X" | ||
"Operating System :: Microsoft :: Windows" | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
Intended Audience :: Developers | ||
Programming Language :: Python :: 3 | ||
Operating System :: Unix | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: Microsoft :: Windows | ||
|
||
[options] | ||
package = tensorhue | ||
packages = find: | ||
python_requires = >=3.9 | ||
zip_safe = no | ||
|
||
[options.packages.find] | ||
include = tensorhue | ||
|
||
[project] | ||
name = "tensorhue" | ||
dynamic = ["version"] | ||
|