Skip to content

Commit 3ffa020

Browse files
author
Thomas Schmidt
committed
Preparation for open sourcing: Added License, Changelog and reverted version to 0.1.0
1 parent d150ad0 commit 3ffa020

File tree

4 files changed

+71
-2
lines changed

4 files changed

+71
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
5+
6+
# Changelog
7+
All notable changes to this project will be documented in this file.
8+
9+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
10+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11+
12+
13+
## [0.1.0] - 2023-10-26
14+
Initial version.
15+
16+
17+
[0.1.0]: https://github.com/DeepLcom/sql-mock/releases/tag/v0.1.0

LICENCE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright 2023 DeepL SE (https://www.deepl.com)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,37 @@
11
# SQL Mock: Python Library for Mocking SQL Queries with Dictionary Inputs
22

3+
[![License: MIT](https://img.shields.io/badge/license-MIT-blueviolet.svg)](https://github.com/DeepLcom/sql-mock/blob/main/LICENSE)
4+
35
The primary purpose of this library is to simplify the testing of SQL data models and queries by allowing users to mock input data and create tests for various scenarios. It provides a consistent and convenient way to test the execution of your query without the need to process a massive amount of data.
46

57
The library currently supports the following databases. Database specific documentations are provided in the links:
68
* [BigQuery](src/sql_mock/bigquery/README.md)
79
* [Clickhouse](src/sql_mock/clickhouse/README.md)
810

11+
## Installation
12+
13+
The library can be installed from [PyPI][pypi-project] using pip:
14+
15+
```shell
16+
pip install --upgrade sql-mock
17+
```
18+
19+
To install database specific versions, you can use the following:
20+
```shell
21+
# BigQuery
22+
pip install --upgrade sql-mock[bigquery]
23+
24+
# Clickhouse
25+
pip install --upgrade sql-mock[clickhouse]
26+
```
27+
28+
If you need to modify this source code, install the dependencies using poetry:
29+
30+
```shell
31+
poetry install --all-extras
32+
```
33+
34+
935
## Usage
1036

1137
### How it works

pyproject.toml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

22
[tool.poetry]
33
name = "sql_mock"
4-
version = "0.2.0"
4+
version = "0.1.0"
55
description = "Simplify the testing of SQL data models and queries by allowing users to mock input data and create tests for various scenarios. It provides a consistent and convenient way to test the execution of your query without the need to process a massive amount of data."
6+
repository = "https://github.com/DeepLcom/sql-mock"
67
readme = "README.md"
7-
authors = ["Thomas Schmidt <[email protected]>"]
8+
authors = ["DeepL SE", "Thomas Schmidt <[email protected]>"]
9+
license = "MIT"
810

911
classifiers = [
1012
"Development Status :: 4 - Beta",
@@ -30,6 +32,9 @@ packages = [
3032
{ include = "sql_mock", from = "src" },
3133
]
3234

35+
[tool.poetry.urls]
36+
"Bug Tracker" = "https://github.com/DeepLcom/sql-mock/issues"
37+
3338
[tool.poetry.dependencies]
3439
python = "^3.9"
3540
jinja2 = "^3.1.2"

0 commit comments

Comments
 (0)