-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final touches for allowing a conda build
- Loading branch information
1 parent
6b905d1
commit 63af1e5
Showing
5 changed files
with
5 additions
and
94 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,14 +1,9 @@ | ||
# generate_version.py | ||
|
||
import tomllib as toml | ||
|
||
# Read the pyproject.toml file | ||
with open("pyproject.toml", "rb") as f: | ||
pyproject = toml.load(f) | ||
|
||
# Extract the version | ||
version = pyproject["project"]["version"] | ||
|
||
# Write the version to blosc2/_version.py | ||
with open("src/blosc2/version.py", "w") as f: | ||
f.write(f'__version__ = "{version}"\n') |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" | |
|
||
[project] | ||
name = "blosc2" | ||
description = "A flexible computational engine for the fast Blosc2 compression library" | ||
description = "A high-performance compressed ndarray library with a flexible computational engine" | ||
readme = {file = "README.rst", content-type = "text/x-rst"} | ||
authors = [{name = "Blosc Development Team", email = "[email protected]"}] | ||
maintainers = [{ name = "Blosc Development Team", email = "[email protected]"}] | ||
|
This file was deleted.
Oops, something went wrong.