-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added most of my basic SQLite wrapper code, along with a simple pool, kv store and work queue implementation.
- Loading branch information
Showing
8 changed files
with
815 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include LICENSE | ||
include sqliteworks.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ['setuptools', 'wheel'] | ||
build-backend = 'setuptools.build_meta' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[metadata] | ||
name = sqliteworks | ||
url = https://github.com/cope-systems/sqliteworks | ||
description = SQLite3 Utilities and Data Structures For Python | ||
long_description = file: README.md | ||
author = Robert Cope | ||
author_email = robert@copesystems.com | ||
license = MPL 2.0 | ||
platforms = any | ||
keywords = sqlite, sqlite3, key value store, kv store, job queue, work queue, sqlite utilities | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 | ||
Programming Language :: SQL | ||
Topic :: Database | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: Utilities | ||
Typing :: Typed | ||
|
||
[options] | ||
py_modules = sqliteworks | ||
python_requires = >=3.6 | ||
install_requires = | ||
test_require = | ||
pytest | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
import os | ||
from setuptools import setup | ||
|
||
VERSION = '0.1.0' | ||
|
||
setup( | ||
version=VERSION, | ||
download_url='https://github.com/cope-systems/sqliteworks/archive/v{0}.tar.gz'.format(VERSION), | ||
) |
Oops, something went wrong.