sqlcompose 0.0.0__tar.gz → 0.0.1__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: sqlcompose
3
- Version: 0.0.0
4
- Summary:
3
+ Version: 0.0.1
4
+ Summary: Composition of linked SQL files
5
5
  License: MIT
6
6
  Author: Anders Madsen
7
7
  Author-email: anders.madsen@alphavue.com
@@ -21,9 +21,12 @@ sqlcompose allows you to compose sql files from multiple files by introducing `I
21
21
 
22
22
  ## Examples
23
23
  __Execute the script directly:__
24
- ```
24
+ ```console
25
25
  sqlcompose query.sql
26
- sqlcompose "select * from $INCLUDE(included-query1.sql)"
26
+ ```
27
+ ```console
28
+ sqlcompose 'select * from $INCLUDE(included-query1.sql)' # on linux
29
+ sqlcompose "select * from $INCLUDE(included-query1.sql)" # on windows
27
30
  ```
28
31
 
29
32
  __Import it in another script:__
@@ -3,9 +3,12 @@ sqlcompose allows you to compose sql files from multiple files by introducing `I
3
3
 
4
4
  ## Examples
5
5
  __Execute the script directly:__
6
- ```
6
+ ```console
7
7
  sqlcompose query.sql
8
- sqlcompose "select * from $INCLUDE(included-query1.sql)"
8
+ ```
9
+ ```console
10
+ sqlcompose 'select * from $INCLUDE(included-query1.sql)' # on linux
11
+ sqlcompose "select * from $INCLUDE(included-query1.sql)" # on windows
9
12
  ```
10
13
 
11
14
  __Import it in another script:__
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "sqlcompose"
3
- version = "0.0.0"
4
- description = ""
3
+ version = "0.0.1"
4
+ description = "Composition of linked SQL files"
5
5
  readme = "README.md"
6
6
  authors = ["Anders Madsen <anders.madsen@alphavue.com>"]
7
7
  license = "MIT"
File without changes