gaeb-cli 0.5.2__tar.gz → 0.5.3__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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: gaeb-cli
3
- Version: 0.5.2
3
+ Version: 0.5.3
4
4
  Summary: Command-line tool for reading, writing, converting and diffing GAEB files (AVA data exchange format)
5
5
  Keywords: gaeb,ava,construction,cli
6
6
  Author: Attackwave
@@ -11,7 +11,7 @@ Classifier: Intended Audience :: Developers
11
11
  Classifier: License :: OSI Approved :: MIT License
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Topic :: Office/Business
14
- Requires-Dist: gaeb>=0.5.2
14
+ Requires-Dist: gaeb>=0.5.3
15
15
  Requires-Dist: typer>=0.12
16
16
  Requires-Dist: rich>=13.0
17
17
  Requires-Python: >=3.10
@@ -19,13 +19,14 @@ Project-URL: Homepage, https://github.com/Attackwave/gaeb-python
19
19
  Project-URL: Repository, https://github.com/Attackwave/gaeb-python
20
20
  Project-URL: Issues, https://github.com/Attackwave/gaeb-python/issues
21
21
  Project-URL: Changelog, https://github.com/Attackwave/gaeb-python/blob/main/CHANGELOG.md
22
+ Project-URL: Library, https://pypi.org/project/gaeb/
22
23
  Description-Content-Type: text/markdown
23
24
 
24
25
  # gaeb-cli
25
26
 
26
27
  Kommandozeilen-Tool zum Lesen, Anzeigen, Konvertieren und Vergleichen von **GAEB-Dateien** (AVA – Ausschreibung, Vergabe, Abrechnung im deutschen Bauwesen).
27
28
 
28
- Basiert auf der [`gaeb`](../gaeb/)-Bibliothek.
29
+ Basiert auf der [`gaeb`](https://pypi.org/project/gaeb/)-Bibliothek.
29
30
 
30
31
  ## Installation
31
32
 
@@ -125,7 +126,7 @@ gaeb validate ausschreibung.x83 --phase 83
125
126
  Validiert eine GAEB-DA-XML-Datei gegen das offizielle XSD-Schema.
126
127
 
127
128
  > **Hinweis:** Die XSD-Schemas müssen separat heruntergeladen werden.
128
- > Siehe [`gaeb/schemas/README.md`](../gaeb/schemas/README.md).
129
+ > Siehe [`gaeb/schemas/README.md`](https://github.com/Attackwave/gaeb-python/blob/main/gaeb/schemas/README.md).
129
130
 
130
131
  ## Unterstützte Phasen
131
132
 
@@ -138,4 +139,4 @@ Validiert eine GAEB-DA-XML-Datei gegen das offizielle XSD-Schema.
138
139
 
139
140
  ## Lizenz
140
141
 
141
- MIT – siehe [LICENSE](../LICENSE)
142
+ MIT – siehe [LICENSE](https://github.com/Attackwave/gaeb-python/blob/main/LICENSE)
@@ -2,7 +2,7 @@
2
2
 
3
3
  Kommandozeilen-Tool zum Lesen, Anzeigen, Konvertieren und Vergleichen von **GAEB-Dateien** (AVA – Ausschreibung, Vergabe, Abrechnung im deutschen Bauwesen).
4
4
 
5
- Basiert auf der [`gaeb`](../gaeb/)-Bibliothek.
5
+ Basiert auf der [`gaeb`](https://pypi.org/project/gaeb/)-Bibliothek.
6
6
 
7
7
  ## Installation
8
8
 
@@ -102,7 +102,7 @@ gaeb validate ausschreibung.x83 --phase 83
102
102
  Validiert eine GAEB-DA-XML-Datei gegen das offizielle XSD-Schema.
103
103
 
104
104
  > **Hinweis:** Die XSD-Schemas müssen separat heruntergeladen werden.
105
- > Siehe [`gaeb/schemas/README.md`](../gaeb/schemas/README.md).
105
+ > Siehe [`gaeb/schemas/README.md`](https://github.com/Attackwave/gaeb-python/blob/main/gaeb/schemas/README.md).
106
106
 
107
107
  ## Unterstützte Phasen
108
108
 
@@ -115,4 +115,4 @@ Validiert eine GAEB-DA-XML-Datei gegen das offizielle XSD-Schema.
115
115
 
116
116
  ## Lizenz
117
117
 
118
- MIT – siehe [LICENSE](../LICENSE)
118
+ MIT – siehe [LICENSE](https://github.com/Attackwave/gaeb-python/blob/main/LICENSE)
@@ -0,0 +1,52 @@
1
+ [project]
2
+ name = "gaeb-cli"
3
+ version = "0.5.3"
4
+ description = "Command-line tool for reading, writing, converting and diffing GAEB files (AVA data exchange format)"
5
+ readme = "README.md"
6
+ keywords = [
7
+ "gaeb",
8
+ "ava",
9
+ "construction",
10
+ "cli",
11
+ ]
12
+ classifiers = [
13
+ "Development Status :: 4 - Beta",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ "Topic :: Office/Business",
18
+ ]
19
+ requires-python = ">=3.10"
20
+ dependencies = [
21
+ "gaeb>=0.5.3",
22
+ "typer>=0.12",
23
+ "rich>=13.0",
24
+ ]
25
+
26
+ [project.license]
27
+ text = "MIT"
28
+
29
+ [[project.authors]]
30
+ name = "Attackwave"
31
+ email = "attackwave@gmail.com"
32
+
33
+ [project.urls]
34
+ Homepage = "https://github.com/Attackwave/gaeb-python"
35
+ Repository = "https://github.com/Attackwave/gaeb-python"
36
+ Issues = "https://github.com/Attackwave/gaeb-python/issues"
37
+ Changelog = "https://github.com/Attackwave/gaeb-python/blob/main/CHANGELOG.md"
38
+ Library = "https://pypi.org/project/gaeb/"
39
+
40
+ [project.scripts]
41
+ gaeb = "gaeb_cli.main:app"
42
+
43
+ [dependency-groups]
44
+ dev = ["pytest>=8.0"]
45
+
46
+ [build-system]
47
+ requires = ["uv_build>=0.11.1,<0.12.0"]
48
+ build-backend = "uv_build"
49
+
50
+ [tool.uv.sources.gaeb]
51
+ path = "../gaeb"
52
+ editable = true
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "gaeb-cli"
3
- version = "0.5.2"
3
+ version = "0.5.3"
4
4
  description = "Command-line tool for reading, writing, converting and diffing GAEB files (AVA data exchange format)"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -17,7 +17,7 @@ classifiers = [
17
17
  ]
18
18
  requires-python = ">=3.10"
19
19
  dependencies = [
20
- "gaeb>=0.5.2",
20
+ "gaeb>=0.5.3",
21
21
  "typer>=0.12",
22
22
  "rich>=13.0",
23
23
  ]
@@ -27,6 +27,7 @@ Homepage = "https://github.com/Attackwave/gaeb-python"
27
27
  Repository = "https://github.com/Attackwave/gaeb-python"
28
28
  Issues = "https://github.com/Attackwave/gaeb-python/issues"
29
29
  Changelog = "https://github.com/Attackwave/gaeb-python/blob/main/CHANGELOG.md"
30
+ Library = "https://pypi.org/project/gaeb/"
30
31
 
31
32
  [project.scripts]
32
33
  gaeb = "gaeb_cli.main:app"
@@ -1,3 +1,3 @@
1
1
  """GAEB CLI – Command-line tool for GAEB files."""
2
2
 
3
- __version__ = "0.5.2"
3
+ __version__ = "0.5.3"
File without changes