Skip to content

Commit b0f6837

Browse files
author
Abhishek Singh
committed
Preparing for release version 1.1.0
1 parent e1ee1f5 commit b0f6837

5 files changed

Lines changed: 28 additions & 6 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10.1-slim as base
1+
FROM python:3.10.5-slim as base
22

33
COPY . /sqlite_rx
44

@@ -10,7 +10,7 @@ RUN pip install wheel && pip wheel --wheel-dir=/svc/wheels /sqlite_rx[cli]
1010
RUN rm -rf /sqlite_rx
1111

1212

13-
FROM python:3.10.1-slim
13+
FROM python:3.10.5-slim
1414

1515
COPY --from=base /svc /svc
1616
WORKDIR /svc

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
[![PyPI version](https://badge.fury.io/py/sqlite-rx.svg)](https://pypi.python.org/pypi/sqlite-rx) [![sqlite-rx](https://github.com/aosingh/sqlite_rx/actions/workflows/sqlite_build.yaml/badge.svg)](https://github.com/aosingh/sqlite_rx/actions) [![Downloads](https://pepy.tech/badge/sqlite-rx)](https://pepy.tech/project/sqlite-rx)
33

44

5-
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)]((https://www.python.org/downloads/release/python-370/)) [![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/) [![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/)
5+
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)
6+
[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/)
67
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)]((https://www.python.org/downloads/release/python-390/))
7-
[![PyPy3.6](https://img.shields.io/badge/python-PyPy3.6-blue.svg)](https://www.pypy.org/index.html)
8+
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3100/)
89

10+
[![PyPy3.7](https://img.shields.io/badge/python-PyPy3.7-blue.svg)](https://www.pypy.org/download.html)
11+
[![PyPy3.8](https://img.shields.io/badge/python-PyPy3.8-blue.svg)](https://www.pypy.org/download.html)
12+
[![PyPy3.9](https://img.shields.io/badge/python-PyPy3.9-blue.svg)](https://www.pypy.org/download.html)
913

10-
Documentation: [https://aosingh.github.io/sqlite_rx/](https://aosingh.github.io/sqlite_rx/)
14+
15+
#### Official Documentation -> [https://aosingh.github.io/sqlite_rx/](https://aosingh.github.io/sqlite_rx/)
1116

1217
# Introduction
1318

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
billiard==4.0.0
1+
billiard==4.0.2
22
click==8.1.3
33
msgpack==1.0.4
44
pyzmq==23.2.0

setup.cfg

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ long_description = file: README.md
66
long_description_content_type = text/markdown
77
keywords = sqlite, client, server, fast, secure
88
url = https://aosingh.github.io/sqlite_rx/
9+
license = MIT License
910
classifiers =
1011
Topic :: Database :: Database Engines/Servers
1112
Development Status :: 5 - Production/Stable
@@ -26,6 +27,14 @@ author = Abhishek Singh
2627
author_email = abhishek.singh20141@gmail.com
2728
maintainer = Abhishek Singh
2829
maintainer_email = abhishek.singh20141@gmail.com
30+
project_urls =
31+
Documentation = https://aosingh.github.io/sqlite_rx/
32+
Source = https://github.com/aosingh/sqlite_rx
33+
Bug Tracker = https://github.com/aosingh/sqlite_rx/issues
34+
CI: https://github.com/aosingh/sqlite_rx/actions
35+
Release Notes: https://github.com/aosingh/sqlite_rx/releases
36+
License: https://github.com/aosingh/sqlite_rx/blob/master/LICENSE
37+
2938

3039
[options]
3140
zip_safe = False

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@
5050
]
5151
keywords = 'sqlite client server fast secure'
5252

53+
project_urls = {"Documentation" : "https://aosingh.github.io/sqlite_rx/",
54+
"Source": "https://github.com/aosingh/sqlite_rx",
55+
"Bug Tracker": "https://github.com/aosingh/sqlite_rx/issues",
56+
"CI": "https://github.com/aosingh/sqlite_rx/actions",
57+
"Release Notes": "https://github.com/aosingh/sqlite_rx/releases",
58+
"License": "https://github.com/aosingh/sqlite_rx/blob/master/LICENSE"}
59+
5360

5461
setup(
5562
name=DISTNAME,
@@ -62,6 +69,7 @@
6269
description=DESCRIPTION,
6370
license=LICENSE,
6471
url=URL,
72+
project_urls=project_urls,
6573
version=VERSION,
6674
scripts=['bin/curve-keygen'],
6775
entry_points={

0 commit comments

Comments
 (0)