search2o 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,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: search2o
3
+ Version: 0.0.1
4
+ Summary: Just a placeholder
5
+ Author: Ram Venkat
6
+ Author-email: info@search2o.com
7
+ Requires-Python: >=3.13
8
+ Dynamic: author
9
+ Dynamic: author-email
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,2 @@
1
+ # search2o
2
+ search2o.com
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: search2o
3
+ Version: 0.0.1
4
+ Summary: Just a placeholder
5
+ Author: Ram Venkat
6
+ Author-email: info@search2o.com
7
+ Requires-Python: >=3.13
8
+ Dynamic: author
9
+ Dynamic: author-email
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ search2o/__init__.py
5
+ search2o.egg-info/PKG-INFO
6
+ search2o.egg-info/SOURCES.txt
7
+ search2o.egg-info/dependency_links.txt
8
+ search2o.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ search2o
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="search2o", # Replace with your desired package name
5
+ version="0.0.1",
6
+ author="Ram Venkat",
7
+ author_email="info@search2o.com",
8
+ description="Just a placeholder",
9
+ packages=find_packages(),
10
+ python_requires=">=3.13",
11
+ )