-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version nad pydantic version * Updated pyproject.toml
- Loading branch information
Showing
2 changed files
with
10 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 |
---|---|---|
|
@@ -5,11 +5,11 @@ build-backend = "hatchling.build" | |
[project] | ||
name = "vbl-aquarium" | ||
dynamic = ["version"] | ||
description = '' | ||
description = 'Collection of Pydantic models describing data objects passed between Virtual Brain Lab projects.' | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.8, <3.13" | ||
license = "MIT" | ||
keywords = [] | ||
keywords = ['pydantic', "virtualbrainlab", "neuroscience"] | ||
authors = [ | ||
{ name = "Kenneth Yang", email = "[email protected]" }, | ||
{ name = "Daniel Birman", email = "[email protected]" }, | ||
|
@@ -24,16 +24,17 @@ classifiers = [ | |
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Science/Research", | ||
] | ||
dependencies = [ | ||
"jsonschema==4.21.1", | ||
"pydantic==2.6.3", | ||
"pydantic==2.6.4", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://github.com/unknown/vbl-aquarium#readme" | ||
Issues = "https://github.com/unknown/vbl-aquarium/issues" | ||
Source = "https://github.com/unknown/vbl-aquarium" | ||
Documentation = "https://github.com/VirtualBrainLab/vbl-aquarium/blob/main/README.md" | ||
Issues = "https://github.com/VirtualBrainLab/vbl-aquarium/issues" | ||
Source = "https://github.com/VirtualBrainLab/vbl-aquarium" | ||
|
||
[tool.hatch.version] | ||
path = "src/vbl_aquarium/__about__.py" | ||
|
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 @@ | ||
__version__ = "0.0.5" | ||
__version__ = "0.0.6" |