pfsmgraph-hseg 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pfsmgraph-hseg
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Hierarchical segmentation for the pfsmgraph ecosystem. Coming soon.
|
|
5
|
+
Author-email: Panayotis Mavromatis <panos.mavromatis@nyu.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
<!-- README.md -->
|
|
11
|
+
# pfsmgraph-hseg
|
|
12
|
+
|
|
13
|
+
Part of the [pfsmgraph](https://pypi.org/project/pfsmgraph/) ecosystem.
|
|
14
|
+
Alignment-based hierarchical segmentation of sequences over arbitrary symbolic alphabets with multi-character token support.
|
|
15
|
+
Implementation in progress. This is a placeholder release.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<!-- README.md -->
|
|
2
|
+
# pfsmgraph-hseg
|
|
3
|
+
|
|
4
|
+
Part of the [pfsmgraph](https://pypi.org/project/pfsmgraph/) ecosystem.
|
|
5
|
+
Alignment-based hierarchical segmentation of sequences over arbitrary symbolic alphabets with multi-character token support.
|
|
6
|
+
Implementation in progress. This is a placeholder release.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# pyproject.toml
|
|
2
|
+
[build-system]
|
|
3
|
+
requires = ["hatchling"]
|
|
4
|
+
build-backend = "hatchling.build"
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "pfsmgraph-hseg"
|
|
8
|
+
version = "0.0.0"
|
|
9
|
+
description = "Hierarchical segmentation for the pfsmgraph ecosystem. Coming soon."
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{ name = "Panayotis Mavromatis", email = "panos.mavromatis@nyu.edu" }]
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
bypass-selection = true
|