python-table-converter 0.1.0__tar.gz → 0.1.2__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,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-table-converter
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A table data converter
5
+ Home-page: https://github.com/akivajp/python-table-converter
5
6
  License: MIT
6
7
  Author: Akiva Miura
7
8
  Author-email: akiva.miura@gmail.com
@@ -16,6 +17,7 @@ Requires-Dist: logzero (>=1.7.0,<2.0.0)
16
17
  Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
17
18
  Requires-Dist: pandas (>=2.2.3,<3.0.0)
18
19
  Requires-Dist: tqdm (>=4.67.0,<5.0.0)
20
+ Project-URL: Repository, https://github.com/akivajp/python-table-converter
19
21
  Description-Content-Type: text/markdown
20
22
 
21
23
  # Table Data Converter
@@ -1,18 +1,18 @@
1
1
  [tool.poetry]
2
- #name = "table-converter"
3
2
  name = "python-table-converter"
4
- version = "0.1.0"
3
+ version = "0.1.2"
5
4
  description = "A table data converter"
6
5
  authors = ["Akiva Miura <akiva.miura@gmail.com>"]
7
6
  license = "MIT"
8
7
  readme = "README.md"
8
+ repository = "https://github.com/akivajp/python-table-converter"
9
9
  packages = [
10
- { include = "table_converter", from = "." },
10
+ { include = "table_converter" },
11
11
  ]
12
12
 
13
- #[tool.poetry-dynamic-versioning]
14
- #enable = true
15
- #style = "pep440"
13
+ [tool.poetry-dynamic-versioning]
14
+ enable = false
15
+ style = "pep440"
16
16
 
17
17
  [tool.poetry.scripts]
18
18
  table-converter = "table_converter.cli:main"
@@ -0,0 +1,2 @@
1
+ __version__ = "0.1.2"
2
+ __version_tuple__ = (0, 1, 2)