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.
@@ -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,5 @@
1
+ """
2
+ Neuralchemy - AI Security & Developer Tooling.
3
+ Coming soon.
4
+ """
5
+ __version__ = "0.0.1"
@@ -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,6 @@
1
+ setup.py
2
+ neuralchemy/__init__.py
3
+ neuralchemy.egg-info/PKG-INFO
4
+ neuralchemy.egg-info/SOURCES.txt
5
+ neuralchemy.egg-info/dependency_links.txt
6
+ neuralchemy.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ neuralchemy
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )