-
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.
new commit with work from temporary repo
decided to keep everything here instead of in `brainglobe-scripts` `brainglobe-scripts` is now obsolete.
- Loading branch information
1 parent
fa48258
commit 7da0731
Showing
3 changed files
with
9 additions
and
2 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 |
---|---|---|
@@ -1 +1 @@ | ||
# brainglobe-workflows | ||
# brainglobe-scripts |
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,7 @@ | ||
from importlib.metadata import PackageNotFoundError, version | ||
|
||
try: | ||
__version__ = version("brainglobe-scripts") | ||
except PackageNotFoundError: | ||
# package is not installed | ||
pass |
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,7 +1,7 @@ | ||
[project] | ||
name = "brainglobe-workflows" | ||
authors = [{name = "BrainGlobe developers", email= "[email protected]"}] | ||
description = "A place to keep scripts to use as benchmarks, user-examples end-to-end tests and for tutorials" | ||
description = "A place to keep scripts to use as benchmarks, user-facing examples, end-to-end tests and for tutorials" | ||
readme = "README.md" | ||
requires-python = ">=3.8.0" | ||
dynamic = ["version"] | ||
|