seerdb 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.
seerdb-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: seerdb
3
+ Version: 0.0.1
4
+ Summary: A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary database's native wire protocol. Early name-reservation release; see the project homepage.
5
+ Author-email: Peter Lemenkov <lemenkov@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/seerdb/seerdb
8
+ Project-URL: Source, https://github.com/seerdb/seerdb
9
+ Keywords: database,db-api,driver,tns,ttc
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Database :: Front-Ends
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+
17
+ # seerdb
18
+
19
+ A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary
20
+ database's native wire protocol directly over TCP — no vendor client
21
+ libraries required.
22
+
23
+ **This is an early name-reservation release.** Development happens at
24
+ https://github.com/seerdb/seerdb.
25
+
26
+ Independent project — not affiliated with, endorsed by, or sponsored by any
27
+ database vendor.
seerdb-0.0.1/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # seerdb
2
+
3
+ A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary
4
+ database's native wire protocol directly over TCP — no vendor client
5
+ libraries required.
6
+
7
+ **This is an early name-reservation release.** Development happens at
8
+ https://github.com/seerdb/seerdb.
9
+
10
+ Independent project — not affiliated with, endorsed by, or sponsored by any
11
+ database vendor.
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "seerdb"
7
+ version = "0.0.1"
8
+ description = "A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary database's native wire protocol. Early name-reservation release; see the project homepage."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "Peter Lemenkov", email = "lemenkov@gmail.com" }]
13
+ keywords = ["database", "db-api", "driver", "tns", "ttc"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Intended Audience :: Developers",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Database :: Front-Ends",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/seerdb/seerdb"
23
+ Source = "https://github.com/seerdb/seerdb"
24
+
25
+ [tool.setuptools]
26
+ packages = ["seerdb"]
@@ -0,0 +1,10 @@
1
+ # SPDX-FileCopyrightText: 2019 Peter Lemenkov <lemenkov@gmail.com>
2
+ # SPDX-License-Identifier: MIT
3
+ """seerdb — early name-reservation release.
4
+
5
+ A pure-Python, clean-room DB-API 2.0 driver for a proprietary database.
6
+ Independent project; not affiliated with, endorsed by, or sponsored by any
7
+ database vendor. See https://github.com/seerdb/seerdb.
8
+ """
9
+
10
+ __version__ = "0.0.1"
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: seerdb
3
+ Version: 0.0.1
4
+ Summary: A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary database's native wire protocol. Early name-reservation release; see the project homepage.
5
+ Author-email: Peter Lemenkov <lemenkov@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/seerdb/seerdb
8
+ Project-URL: Source, https://github.com/seerdb/seerdb
9
+ Keywords: database,db-api,driver,tns,ttc
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Database :: Front-Ends
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+
17
+ # seerdb
18
+
19
+ A pure-Python, clean-room DB-API 2.0 driver that speaks a proprietary
20
+ database's native wire protocol directly over TCP — no vendor client
21
+ libraries required.
22
+
23
+ **This is an early name-reservation release.** Development happens at
24
+ https://github.com/seerdb/seerdb.
25
+
26
+ Independent project — not affiliated with, endorsed by, or sponsored by any
27
+ database vendor.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ seerdb/__init__.py
4
+ seerdb.egg-info/PKG-INFO
5
+ seerdb.egg-info/SOURCES.txt
6
+ seerdb.egg-info/dependency_links.txt
7
+ seerdb.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ seerdb
seerdb-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+