ontonify 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.
- ontonify-0.0.1/PKG-INFO +25 -0
- ontonify-0.0.1/README.md +9 -0
- ontonify-0.0.1/pyproject.toml +26 -0
- ontonify-0.0.1/setup.cfg +4 -0
- ontonify-0.0.1/src/ontonify/__init__.py +12 -0
- ontonify-0.0.1/src/ontonify.egg-info/PKG-INFO +25 -0
- ontonify-0.0.1/src/ontonify.egg-info/SOURCES.txt +7 -0
- ontonify-0.0.1/src/ontonify.egg-info/dependency_links.txt +1 -0
- ontonify-0.0.1/src/ontonify.egg-info/top_level.txt +1 -0
ontonify-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ontonify
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Ontonify - open-source general-purpose ontology tool (name-reservation placeholder; real code forthcoming)
|
|
5
|
+
Project-URL: Homepage, https://github.com/ontonify/ontonify
|
|
6
|
+
Project-URL: Repository, https://github.com/ontonify/ontonify
|
|
7
|
+
Keywords: ontology,knowledge-graph,kg,ontologies,mcp,rdf,owl
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# ontonify
|
|
18
|
+
|
|
19
|
+
**Open-source, general-purpose ontology tool — free for everyone to use.**
|
|
20
|
+
|
|
21
|
+
> **Placeholder release.** This 0.0.1 package reserves the `ontonify` project
|
|
22
|
+
> name on PyPI. The real implementation (an ontology / knowledge-graph
|
|
23
|
+
> construction and management tool) is under active development and will be
|
|
24
|
+
> published to this namespace soon. Please watch the source repository for
|
|
25
|
+
> updates: <https://github.com/ontonify/ontonify>
|
ontonify-0.0.1/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# ontonify
|
|
2
|
+
|
|
3
|
+
**Open-source, general-purpose ontology tool — free for everyone to use.**
|
|
4
|
+
|
|
5
|
+
> **Placeholder release.** This 0.0.1 package reserves the `ontonify` project
|
|
6
|
+
> name on PyPI. The real implementation (an ontology / knowledge-graph
|
|
7
|
+
> construction and management tool) is under active development and will be
|
|
8
|
+
> published to this namespace soon. Please watch the source repository for
|
|
9
|
+
> updates: <https://github.com/ontonify/ontonify>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ontonify"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Ontonify - open-source general-purpose ontology tool (name-reservation placeholder; real code forthcoming)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
keywords = ["ontology", "knowledge-graph", "kg", "ontologies", "mcp", "rdf", "owl"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Intended Audience :: Science/Research",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
18
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/ontonify/ontonify"
|
|
23
|
+
Repository = "https://github.com/ontonify/ontonify"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools.packages.find]
|
|
26
|
+
where = ["src"]
|
ontonify-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""ontonify - placeholder package.
|
|
2
|
+
|
|
3
|
+
This release **reserves the ``ontonify`` project name on PyPI** for an
|
|
4
|
+
open-source, general-purpose ontology / knowledge-graph tool (everyone may use
|
|
5
|
+
it freely). The real implementation is under active development and will be
|
|
6
|
+
published to this project namespace in a later release.
|
|
7
|
+
|
|
8
|
+
If you reached this package while the full tool is not yet available, please
|
|
9
|
+
check back later or watch ``https://github.com/ontonify/ontonify``.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ontonify
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Ontonify - open-source general-purpose ontology tool (name-reservation placeholder; real code forthcoming)
|
|
5
|
+
Project-URL: Homepage, https://github.com/ontonify/ontonify
|
|
6
|
+
Project-URL: Repository, https://github.com/ontonify/ontonify
|
|
7
|
+
Keywords: ontology,knowledge-graph,kg,ontologies,mcp,rdf,owl
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# ontonify
|
|
18
|
+
|
|
19
|
+
**Open-source, general-purpose ontology tool — free for everyone to use.**
|
|
20
|
+
|
|
21
|
+
> **Placeholder release.** This 0.0.1 package reserves the `ontonify` project
|
|
22
|
+
> name on PyPI. The real implementation (an ontology / knowledge-graph
|
|
23
|
+
> construction and management tool) is under active development and will be
|
|
24
|
+
> published to this namespace soon. Please watch the source repository for
|
|
25
|
+
> updates: <https://github.com/ontonify/ontonify>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ontonify
|