database-wrapper-sqlite 0.1.20__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,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: database_wrapper_sqlite
3
+ Version: 0.1.20
4
+ Summary: database_wrapper for PostgreSQL database
5
+ Author-email: Gints Murans <gm@gm.lv>
6
+ License: GNU General Public License v3.0 (GPL-3.0)
7
+ Project-URL: Homepage, https://github.com/gintsmurans/py_database_wrapper
8
+ Project-URL: Documentation, https://github.com/gintsmurans/py_database_wrapper
9
+ Project-URL: Changes, https://github.com/gintsmurans/py_database_wrapper
10
+ Project-URL: Code, https://github.com/gintsmurans/py_database_wrapper
11
+ Project-URL: Issue Tracker, https://github.com/gintsmurans/py_database_wrapper/issues
12
+ Project-URL: Download, https://pypi.org/project/database_wrapper/
13
+ Keywords: database,wrapper,python,sqlite
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
17
+ Classifier: Operating System :: MacOS :: MacOS X
18
+ Classifier: Operating System :: Microsoft :: Windows
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
29
+ Classifier: Topic :: Database
30
+ Classifier: Topic :: Database :: Front-Ends
31
+ Classifier: Topic :: Software Development
32
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
+ Requires-Python: >=3.8
34
+ Description-Content-Type: text/markdown
35
+ Requires-Dist: database_wrapper==0.1.28
@@ -0,0 +1 @@
1
+ raise Exception("Not yet implemented")
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: database_wrapper_sqlite
3
+ Version: 0.1.20
4
+ Summary: database_wrapper for PostgreSQL database
5
+ Author-email: Gints Murans <gm@gm.lv>
6
+ License: GNU General Public License v3.0 (GPL-3.0)
7
+ Project-URL: Homepage, https://github.com/gintsmurans/py_database_wrapper
8
+ Project-URL: Documentation, https://github.com/gintsmurans/py_database_wrapper
9
+ Project-URL: Changes, https://github.com/gintsmurans/py_database_wrapper
10
+ Project-URL: Code, https://github.com/gintsmurans/py_database_wrapper
11
+ Project-URL: Issue Tracker, https://github.com/gintsmurans/py_database_wrapper/issues
12
+ Project-URL: Download, https://pypi.org/project/database_wrapper/
13
+ Keywords: database,wrapper,python,sqlite
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
17
+ Classifier: Operating System :: MacOS :: MacOS X
18
+ Classifier: Operating System :: Microsoft :: Windows
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
29
+ Classifier: Topic :: Database
30
+ Classifier: Topic :: Database :: Front-Ends
31
+ Classifier: Topic :: Software Development
32
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
+ Requires-Python: >=3.8
34
+ Description-Content-Type: text/markdown
35
+ Requires-Dist: database_wrapper==0.1.28
@@ -0,0 +1,7 @@
1
+ pyproject.toml
2
+ database_wrapper_sqlite/__init__.py
3
+ database_wrapper_sqlite.egg-info/PKG-INFO
4
+ database_wrapper_sqlite.egg-info/SOURCES.txt
5
+ database_wrapper_sqlite.egg-info/dependency_links.txt
6
+ database_wrapper_sqlite.egg-info/requires.txt
7
+ database_wrapper_sqlite.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ database_wrapper==0.1.28
@@ -0,0 +1 @@
1
+ database_wrapper_sqlite
@@ -0,0 +1,50 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 61.0.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "database_wrapper_sqlite"
7
+ version = "0.1.20"
8
+ description = "database_wrapper for PostgreSQL database"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "GNU General Public License v3.0 (GPL-3.0)"}
12
+ authors = [
13
+ {name = "Gints Murans", email = "gm@gm.lv"}
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
19
+ "Operating System :: MacOS :: MacOS X",
20
+ "Operating System :: Microsoft :: Windows",
21
+ "Operating System :: POSIX",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.8",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Programming Language :: Python :: 3.13",
29
+ "Programming Language :: Python :: Implementation :: CPython",
30
+ "Programming Language :: Python :: Implementation :: PyPy",
31
+ "Topic :: Database",
32
+ "Topic :: Database :: Front-Ends",
33
+ "Topic :: Software Development",
34
+ "Topic :: Software Development :: Libraries :: Python Modules"
35
+ ]
36
+ keywords = ["database", "wrapper", "python", "sqlite"]
37
+ dependencies = [
38
+ "database_wrapper == 0.1.28",
39
+ ]
40
+
41
+ [project.urls]
42
+ Homepage = "https://github.com/gintsmurans/py_database_wrapper"
43
+ Documentation = "https://github.com/gintsmurans/py_database_wrapper"
44
+ Changes = "https://github.com/gintsmurans/py_database_wrapper"
45
+ Code = "https://github.com/gintsmurans/py_database_wrapper"
46
+ "Issue Tracker" = "https://github.com/gintsmurans/py_database_wrapper/issues"
47
+ Download = "https://pypi.org/project/database_wrapper/"
48
+
49
+ [tool.setuptools.package-data]
50
+ database_wrapper_sqlite = ["py.typed"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+