dbbdata 1.0.0__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.
dbbdata-1.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 DBB DATA Solutions GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
dbbdata-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: dbbdata
3
+ Version: 1.0.0
4
+ Summary: Odoo x DATEV. Jemand muss es ja tun.
5
+ Author: DBB DATA Solutions GmbH
6
+ License: MIT
7
+ Project-URL: Homepage, https://dbbdata.de
8
+ Keywords: odoo,datev,fibu,easter-egg
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Dynamic: license-file
16
+
17
+ # dbbdata
18
+
19
+ **Odoo x DATEV. Jemand muss es ja tun.**
20
+
21
+ Ein kleines Easter Egg von [DBB DATA](https://dbbdata.de).
22
+
23
+ ```bash
24
+ pip install dbbdata && python -c "import dbbdata"
25
+ ```
26
+
27
+ DATEV-Schnittstellen, FiBu & Lohn fuer eure Odoo-Implementierungen.
@@ -0,0 +1,11 @@
1
+ # dbbdata
2
+
3
+ **Odoo x DATEV. Jemand muss es ja tun.**
4
+
5
+ Ein kleines Easter Egg von [DBB DATA](https://dbbdata.de).
6
+
7
+ ```bash
8
+ pip install dbbdata && python -c "import dbbdata"
9
+ ```
10
+
11
+ DATEV-Schnittstellen, FiBu & Lohn fuer eure Odoo-Implementierungen.
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dbbdata"
7
+ version = "1.0.0"
8
+ description = "Odoo x DATEV. Jemand muss es ja tun."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "DBB DATA Solutions GmbH" }]
13
+ keywords = ["odoo", "datev", "fibu", "easter-egg"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://dbbdata.de"
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,64 @@
1
+ """DBB DATA – Odoo x DATEV.
2
+
3
+ Jemand muss es ja tun.
4
+
5
+ Ein kleines Easter Egg: einfach importieren.
6
+
7
+ >>> import dbbdata
8
+
9
+ Farben lassen sich mit der Umgebungsvariable NO_COLOR abschalten.
10
+ """
11
+
12
+ import os
13
+ import sys
14
+
15
+ __version__ = "1.0.0"
16
+ __all__ = ["banner", "slogan"]
17
+
18
+ slogan = "Jemand muss es ja tun."
19
+
20
+ _USE_COLOR = (
21
+ sys.stdout.isatty()
22
+ and os.environ.get("NO_COLOR") is None
23
+ and os.environ.get("TERM") != "dumb"
24
+ )
25
+
26
+ _BLUE = "\033[38;5;33m" if _USE_COLOR else ""
27
+ _DIM = "\033[2m" if _USE_COLOR else ""
28
+ _BOLD = "\033[1m" if _USE_COLOR else ""
29
+ _RESET = "\033[0m" if _USE_COLOR else ""
30
+
31
+ _FINGERPRINT = r"""
32
+ .-==========-.
33
+ .-' ____ '-.
34
+ .' .-' '-. '.
35
+ / .' ___ '. \
36
+ / / .' '. \ \
37
+ | | | .-. | | |
38
+ | | | '-' | | |
39
+ | | '. .' | |
40
+ \ \ '-' / /
41
+ \ '. .' /
42
+ '. '-.__.-' .'
43
+ '-. .-'
44
+ '-======-'
45
+ """
46
+
47
+
48
+ def banner():
49
+ """Gibt den Fingerabdruck, den Slogan und die Kontaktdaten aus."""
50
+ lines = _FINGERPRINT.strip("\n").splitlines()
51
+ fp = "\n".join(_BLUE + ln + _RESET for ln in lines)
52
+ print(fp)
53
+ print()
54
+ print(f" {_BOLD}{_BLUE}DBB DATA{_RESET} {_DIM}ODOO x DATEV{_RESET}")
55
+ print(f" {_DIM}DATEV-Schnittstellen, FiBu & Lohn{_RESET}")
56
+ print()
57
+ print(f" \u201e{slogan}\u201c")
58
+ print()
59
+ print(f" {_BLUE}https://dbbdata.de{_RESET}")
60
+ print()
61
+
62
+
63
+ # Easter Egg: beim Import automatisch anzeigen.
64
+ banner()
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: dbbdata
3
+ Version: 1.0.0
4
+ Summary: Odoo x DATEV. Jemand muss es ja tun.
5
+ Author: DBB DATA Solutions GmbH
6
+ License: MIT
7
+ Project-URL: Homepage, https://dbbdata.de
8
+ Keywords: odoo,datev,fibu,easter-egg
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Dynamic: license-file
16
+
17
+ # dbbdata
18
+
19
+ **Odoo x DATEV. Jemand muss es ja tun.**
20
+
21
+ Ein kleines Easter Egg von [DBB DATA](https://dbbdata.de).
22
+
23
+ ```bash
24
+ pip install dbbdata && python -c "import dbbdata"
25
+ ```
26
+
27
+ DATEV-Schnittstellen, FiBu & Lohn fuer eure Odoo-Implementierungen.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/dbbdata/__init__.py
5
+ src/dbbdata.egg-info/PKG-INFO
6
+ src/dbbdata.egg-info/SOURCES.txt
7
+ src/dbbdata.egg-info/dependency_links.txt
8
+ src/dbbdata.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dbbdata