tidyedi 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.
tidyedi-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.5
2
+ Name: tidyedi
3
+ Version: 0.0.1
4
+ Summary: TidyEDI — validate and repair ANSI X12 EDI. Name reservation; see x12-tidy.
5
+ Project-URL: Homepage, https://tidyedi.com
6
+ Project-URL: Repository, https://github.com/ubeast/x12-tidy
7
+ Author-email: Michael Schertz <michael.schertz@gmail.com>
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.11
13
+ Description-Content-Type: text/markdown
14
+
15
+ # tidyedi
16
+
17
+ Name reservation for the [TidyEDI](https://tidyedi.com) project.
18
+
19
+ The tool is published as [`x12-tidy`](https://pypi.org/project/x12-tidy/).
@@ -0,0 +1,5 @@
1
+ # tidyedi
2
+
3
+ Name reservation for the [TidyEDI](https://tidyedi.com) project.
4
+
5
+ The tool is published as [`x12-tidy`](https://pypi.org/project/x12-tidy/).
@@ -0,0 +1,25 @@
1
+ [project]
2
+ name = "tidyedi"
3
+ version = "0.0.1"
4
+ description = "TidyEDI — validate and repair ANSI X12 EDI. Name reservation; see x12-tidy."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = "MIT"
8
+ authors = [{ name = "Michael Schertz", email = "michael.schertz@gmail.com" }]
9
+ classifiers = [
10
+ "Development Status :: 1 - Planning",
11
+ "License :: OSI Approved :: MIT License",
12
+ "Programming Language :: Python :: 3",
13
+ ]
14
+ dependencies = []
15
+
16
+ [project.urls]
17
+ Homepage = "https://tidyedi.com"
18
+ Repository = "https://github.com/ubeast/x12-tidy"
19
+
20
+ [build-system]
21
+ requires = ["hatchling"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/tidyedi"]
@@ -0,0 +1,3 @@
1
+ """Name reservation for the TidyEDI project. The tool is `x12-tidy`."""
2
+
3
+ __version__ = "0.0.1"