neuralgush 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.
- neuralgush-0.0.1/PKG-INFO +20 -0
- neuralgush-0.0.1/README.md +9 -0
- neuralgush-0.0.1/pyproject.toml +19 -0
- neuralgush-0.0.1/setup.cfg +4 -0
- neuralgush-0.0.1/src/neuralgush/__init__.py +16 -0
- neuralgush-0.0.1/src/neuralgush.egg-info/PKG-INFO +20 -0
- neuralgush-0.0.1/src/neuralgush.egg-info/SOURCES.txt +7 -0
- neuralgush-0.0.1/src/neuralgush.egg-info/dependency_links.txt +1 -0
- neuralgush-0.0.1/src/neuralgush.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: neuralgush
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Neuralgush — local AI assistant platform. Name reservation for the forthcoming project; the real package will be published here.
|
|
5
|
+
Author: Neuralgush project
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Neuralgush
|
|
13
|
+
|
|
14
|
+
Neuralgush is a local AI assistant platform, currently in development.
|
|
15
|
+
|
|
16
|
+
This 0.0.1 release reserves the package name; the real package will be
|
|
17
|
+
published here when the project goes public. Installing it provides a
|
|
18
|
+
version stub only.
|
|
19
|
+
|
|
20
|
+
Neuralgush™ is a trademark of the Neuralgush project.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Neuralgush
|
|
2
|
+
|
|
3
|
+
Neuralgush is a local AI assistant platform, currently in development.
|
|
4
|
+
|
|
5
|
+
This 0.0.1 release reserves the package name; the real package will be
|
|
6
|
+
published here when the project goes public. Installing it provides a
|
|
7
|
+
version stub only.
|
|
8
|
+
|
|
9
|
+
Neuralgush™ is a trademark of the Neuralgush project.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "neuralgush"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Neuralgush — local AI assistant platform. Name reservation for the forthcoming project; the real package will be published here."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Neuralgush project" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[tool.setuptools.packages.find]
|
|
19
|
+
where = ["src"]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Neuralgush — local AI assistant platform.
|
|
2
|
+
|
|
3
|
+
This is a placeholder release reserving the package name for the
|
|
4
|
+
forthcoming Neuralgush project. The real package will be published
|
|
5
|
+
under this name.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def main() -> None:
|
|
12
|
+
print(f"neuralgush {__version__} — placeholder release; the project has not shipped yet.")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
if __name__ == "__main__":
|
|
16
|
+
main()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: neuralgush
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Neuralgush — local AI assistant platform. Name reservation for the forthcoming project; the real package will be published here.
|
|
5
|
+
Author: Neuralgush project
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Neuralgush
|
|
13
|
+
|
|
14
|
+
Neuralgush is a local AI assistant platform, currently in development.
|
|
15
|
+
|
|
16
|
+
This 0.0.1 release reserves the package name; the real package will be
|
|
17
|
+
published here when the project goes public. Installing it provides a
|
|
18
|
+
version stub only.
|
|
19
|
+
|
|
20
|
+
Neuralgush™ is a trademark of the Neuralgush project.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
neuralgush
|