mem0ai 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.
- mem0ai-0.0.1/PKG-INFO +12 -0
- mem0ai-0.0.1/README.md +1 -0
- mem0ai-0.0.1/mem0ai/__init__.py +1 -0
- mem0ai-0.0.1/mem0ai.egg-info/PKG-INFO +12 -0
- mem0ai-0.0.1/mem0ai.egg-info/SOURCES.txt +7 -0
- mem0ai-0.0.1/mem0ai.egg-info/dependency_links.txt +1 -0
- mem0ai-0.0.1/mem0ai.egg-info/top_level.txt +1 -0
- mem0ai-0.0.1/setup.cfg +4 -0
- mem0ai-0.0.1/setup.py +22 -0
mem0ai-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mem0ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: mem0ai
|
|
5
|
+
Author: Taranjeet Singh
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# mem0ai
|
mem0ai-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# mem0ai
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
print("Hello World")
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mem0ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: mem0ai
|
|
5
|
+
Author: Taranjeet Singh
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# mem0ai
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mem0ai
|
mem0ai-0.0.1/setup.cfg
ADDED
mem0ai-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setuptools.setup(
|
|
7
|
+
name="mem0ai",
|
|
8
|
+
version="0.0.1",
|
|
9
|
+
author="Taranjeet Singh",
|
|
10
|
+
description="mem0ai",
|
|
11
|
+
long_description=long_description,
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
packages=setuptools.find_packages(),
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires='>=3.8',
|
|
20
|
+
py_modules=["mem0ai"],
|
|
21
|
+
install_requires=[]
|
|
22
|
+
)
|