pgsalesgen 0.1.0__tar.gz → 0.1.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.
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/PKG-INFO +2 -5
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/README.md +1 -4
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/pyproject.toml +2 -2
- pgsalesgen-0.1.0/.gitignore +0 -10
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/LICENSE +0 -0
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/src/pgsalesgen/__init__.py +0 -0
- {pgsalesgen-0.1.0 → pgsalesgen-0.1.1}/src/pgsalesgen/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pgsalesgen
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Generate sales data for PostgreSQL
|
|
5
5
|
Project-URL: Homepage, https://github.com/rioriost/homebrew-pgsalesgen
|
|
6
6
|
Project-URL: Issues, https://github.com/rioriost/homebrew-pgsalesgen/issues
|
|
@@ -43,11 +43,8 @@ PostgreSQL Sales Generator
|
|
|
43
43
|
|
|
44
44
|
- [Prerequisites](#prerequisites)
|
|
45
45
|
- [Install](#install)
|
|
46
|
-
- [Usage
|
|
47
|
-
- [Usage with Visual Studio Code Insiders](#usage-with-visual-studio-code-insiders)
|
|
48
|
-
- [Write Operations](#write-operations)
|
|
46
|
+
- [Usage](#usage)
|
|
49
47
|
- [Release Notes](#release-notes)
|
|
50
|
-
- [For More Information](#for-more-information)
|
|
51
48
|
- [License](#license)
|
|
52
49
|
|
|
53
50
|
## Prerequisites
|
|
@@ -9,11 +9,8 @@ PostgreSQL Sales Generator
|
|
|
9
9
|
|
|
10
10
|
- [Prerequisites](#prerequisites)
|
|
11
11
|
- [Install](#install)
|
|
12
|
-
- [Usage
|
|
13
|
-
- [Usage with Visual Studio Code Insiders](#usage-with-visual-studio-code-insiders)
|
|
14
|
-
- [Write Operations](#write-operations)
|
|
12
|
+
- [Usage](#usage)
|
|
15
13
|
- [Release Notes](#release-notes)
|
|
16
|
-
- [For More Information](#for-more-information)
|
|
17
14
|
- [License](#license)
|
|
18
15
|
|
|
19
16
|
## Prerequisites
|
|
@@ -3,7 +3,7 @@ name = "pgsalesgen"
|
|
|
3
3
|
authors = [
|
|
4
4
|
{ name = "Rio Fujita", email = "rifujita@microsoft.com" }
|
|
5
5
|
]
|
|
6
|
-
version = "0.1.
|
|
6
|
+
version = "0.1.1"
|
|
7
7
|
license = {file = "LICENSE"}
|
|
8
8
|
description = "Generate sales data for PostgreSQL"
|
|
9
9
|
readme = "README.md"
|
|
@@ -19,7 +19,7 @@ Homepage = "https://github.com/rioriost/homebrew-pgsalesgen"
|
|
|
19
19
|
Issues = "https://github.com/rioriost/homebrew-pgsalesgen/issues"
|
|
20
20
|
|
|
21
21
|
[project.scripts]
|
|
22
|
-
|
|
22
|
+
pgsalesgen = "pgsalesgen.main:main"
|
|
23
23
|
|
|
24
24
|
[build-system]
|
|
25
25
|
requires = ["hatchling"]
|
pgsalesgen-0.1.0/.gitignore
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|