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.
- search2o-0.0.1/PKG-INFO +11 -0
- search2o-0.0.1/README.md +2 -0
- search2o-0.0.1/pyproject.toml +3 -0
- search2o-0.0.1/search2o/__init__.py +1 -0
- search2o-0.0.1/search2o.egg-info/PKG-INFO +11 -0
- search2o-0.0.1/search2o.egg-info/SOURCES.txt +8 -0
- search2o-0.0.1/search2o.egg-info/dependency_links.txt +1 -0
- search2o-0.0.1/search2o.egg-info/top_level.txt +1 -0
- search2o-0.0.1/setup.cfg +4 -0
- search2o-0.0.1/setup.py +11 -0
search2o-0.0.1/PKG-INFO
ADDED
search2o-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
search2o
|
search2o-0.0.1/setup.cfg
ADDED
search2o-0.0.1/setup.py
ADDED
|
@@ -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
|
+
)
|