Skip to content

Commit

Permalink
Initial Commit -- 0.1.0
Browse files Browse the repository at this point in the history
* Added most of my basic SQLite wrapper code, along with a simple
  pool, kv store and work queue implementation.
  • Loading branch information
rpcope1 committed Mar 11, 2024
1 parent 4a0cd20 commit 972b14f
Show file tree
Hide file tree
Showing 8 changed files with 815 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE
include sqliteworks.py
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pytest
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
29 changes: 29 additions & 0 deletions setup.cfg
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
10 changes: 10 additions & 0 deletions setup.py
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),
)
Loading

0 comments on commit 972b14f

Please sign in to comment.