histoforge 0.0.1__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,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: histoforge
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: QuPath-native train-your-own deep-learning histopathology platform
|
|
5
|
+
Project-URL: Homepage, https://huggingface.co/histoforge
|
|
6
|
+
Author-email: Andrei Beliaev <andrewbelyaev2164@gmail.com>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: deep-learning,digital-pathology,histopathology,qupath,segmentation
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# HistoForge
|
|
17
|
+
|
|
18
|
+
QuPath-native, train-your-own deep-learning platform for histopathology research.
|
|
19
|
+
|
|
20
|
+
This is a placeholder release reserving the `histoforge` name on PyPI. The real
|
|
21
|
+
package — a CLI that deploys a BYO-Modal inference gateway behind the QuPath
|
|
22
|
+
plugin — is coming soon.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# HistoForge
|
|
2
|
+
|
|
3
|
+
QuPath-native, train-your-own deep-learning platform for histopathology research.
|
|
4
|
+
|
|
5
|
+
This is a placeholder release reserving the `histoforge` name on PyPI. The real
|
|
6
|
+
package — a CLI that deploys a BYO-Modal inference gateway behind the QuPath
|
|
7
|
+
plugin — is coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.27"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "histoforge"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "QuPath-native train-your-own deep-learning histopathology platform"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Andrei Beliaev", email = "andrewbelyaev2164@gmail.com" }]
|
|
13
|
+
keywords = ["histopathology", "digital-pathology", "qupath", "segmentation", "deep-learning"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Medical Science Apps.",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://huggingface.co/histoforge"
|