Skip to content

Commit ab814de

Browse files
committed
v0.1.0
1 parent 9335895 commit ab814de

4 files changed

Lines changed: 57 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [0.0.1] - work in progress
3+
## [0.1.0] - 02-04-2026 - extracted from graphbrain
44

55
### Added
66

@@ -10,5 +10,3 @@
1010
### Changed
1111

1212
- Original alpha-beta parser from Graphbrain was extracted to create this plugin.
13-
14-
### Removed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (C) 2026 CNRS - Centre national de la recherche scientifique
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

pyproject.toml

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,32 @@
11
[project]
22
name = "hyperbase-parser-ab"
3-
version = "0.1.0"
4-
description = "Semantic Hypergraph Alpha-Beta Parser"
3+
dynamic = ["version"]
4+
description = "Semantic Hypergraph AlphaBeta Parser"
55
readme = "README.md"
6+
license = "MIT"
67
requires-python = ">=3.10"
8+
authors = [
9+
{ name = "Telmo Menezes et al.", email = "telmo@telmomenezes.net" },
10+
]
11+
keywords = [
12+
"NLP",
13+
"AI",
14+
"Knowledge Representation",
15+
"Natural Language Understanding",
16+
"Parsing",
17+
"Semantic Hypergraphs",
18+
]
19+
classifiers = [
20+
"Development Status :: 4 - Beta",
21+
"Programming Language :: Python :: 3",
22+
"Operating System :: OS Independent",
23+
"Environment :: Console",
24+
"Intended Audience :: Science/Research",
25+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
26+
"Topic :: Scientific/Engineering :: Information Analysis",
27+
]
728
dependencies = [
8-
"hyperbase",
29+
"hyperbase>=0.8.0",
930
"scikit-learn>=1.3.0",
1031
"spacy>=3.8.0",
1132
"torch>=2.0.0",
@@ -27,13 +48,23 @@ dev = [
2748
"pytest>=9.0.0",
2849
]
2950

51+
[project.urls]
52+
Homepage = "https://hyperquest.ai/hyperbase"
53+
3054
[project.entry-points."hyperbase.parsers"]
3155
alphabeta = "hyperbase_parser_ab:AlphaBetaParser"
3256

3357
[build-system]
3458
requires = ["hatchling"]
3559
build-backend = "hatchling.build"
3660

61+
[tool.hatch.version]
62+
path = "VERSION"
63+
pattern = "(?P<version>.+)"
64+
65+
[tool.hatch.build.targets.wheel]
66+
packages = ["src/hyperbase_parser_ab"]
67+
3768
[tool.mypy]
3869
strict = true
3970

0 commit comments

Comments
 (0)