neuralchemy 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.
- neuralchemy-0.0.1/PKG-INFO +16 -0
- neuralchemy-0.0.1/neuralchemy/__init__.py +5 -0
- neuralchemy-0.0.1/neuralchemy.egg-info/PKG-INFO +16 -0
- neuralchemy-0.0.1/neuralchemy.egg-info/SOURCES.txt +6 -0
- neuralchemy-0.0.1/neuralchemy.egg-info/dependency_links.txt +1 -0
- neuralchemy-0.0.1/neuralchemy.egg-info/top_level.txt +1 -0
- neuralchemy-0.0.1/setup.cfg +4 -0
- neuralchemy-0.0.1/setup.py +17 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neuralchemy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Neuralchemy - AI Security & Developer Tooling. Coming soon.
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: Neuralchemy
|
|
7
|
+
License: UNKNOWN
|
|
8
|
+
Platform: UNKNOWN
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
The Neuralchemy suite: Shield (LLM security engine), OpenClay (secure glue code), and more. Documentation and initial release coming soon.
|
|
16
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neuralchemy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Neuralchemy - AI Security & Developer Tooling. Coming soon.
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: Neuralchemy
|
|
7
|
+
License: UNKNOWN
|
|
8
|
+
Platform: UNKNOWN
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
The Neuralchemy suite: Shield (LLM security engine), OpenClay (secure glue code), and more. Documentation and initial release coming soon.
|
|
16
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
neuralchemy
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="neuralchemy",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="Neuralchemy",
|
|
7
|
+
description="Neuralchemy - AI Security & Developer Tooling. Coming soon.",
|
|
8
|
+
long_description="The Neuralchemy suite: Shield (LLM security engine), OpenClay (secure glue code), and more. Documentation and initial release coming soon.",
|
|
9
|
+
long_description_content_type="text/markdown",
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
classifiers=[
|
|
12
|
+
"Development Status :: 1 - Planning",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
],
|
|
16
|
+
python_requires=">=3.8",
|
|
17
|
+
)
|