PyCheval 0.3.0__tar.gz → 0.3.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.
Files changed (25) hide show
  1. {pycheval-0.3.0 → pycheval-0.3.1}/PKG-INFO +2 -2
  2. {pycheval-0.3.0 → pycheval-0.3.1}/README.md +1 -1
  3. {pycheval-0.3.0 → pycheval-0.3.1}/pyproject.toml +1 -1
  4. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/quantities.py +3 -0
  5. {pycheval-0.3.0 → pycheval-0.3.1}/LICENSE +0 -0
  6. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/__init__.py +0 -0
  7. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/_locale.py +0 -0
  8. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/_test_data.py +0 -0
  9. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/const.py +0 -0
  10. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/countries.py +0 -0
  11. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/exc.py +0 -0
  12. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/format.py +0 -0
  13. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/generate.py +0 -0
  14. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/locale/de/LC_MESSAGES/pycheval.mo +0 -0
  15. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/locale/de/LC_MESSAGES/pycheval.po +0 -0
  16. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/model.py +0 -0
  17. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/money.py +0 -0
  18. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/parse.py +0 -0
  19. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/pdf_common.py +0 -0
  20. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/pdf_embed.py +0 -0
  21. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/pdf_extract.py +0 -0
  22. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/pdf_parse.py +0 -0
  23. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/py.typed +0 -0
  24. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/type_codes.py +0 -0
  25. {pycheval-0.3.0 → pycheval-0.3.1}/src/pycheval/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyCheval
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Factur-X/ZUGFeRD parsing and generation library for Python
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -33,7 +33,7 @@ See the [Factur-X website (French)](https://www.factur-x.org/) or
33
33
  [FeRD website (German)](https://www.ferd-net.de/) for more information.
34
34
 
35
35
  This library supports reading and writing PDF and XML files according to
36
- Factur-X Version 1.07.3 (aka ZUGFeRD 2.3.3). The following Factur-X profiles
36
+ Factur-X Version 1.08 (aka ZUGFeRD 2.4). The following Factur-X profiles
37
37
  are currently supported:
38
38
 
39
39
  - Minimum
@@ -15,7 +15,7 @@ See the [Factur-X website (French)](https://www.factur-x.org/) or
15
15
  [FeRD website (German)](https://www.ferd-net.de/) for more information.
16
16
 
17
17
  This library supports reading and writing PDF and XML files according to
18
- Factur-X Version 1.07.3 (aka ZUGFeRD 2.3.3). The following Factur-X profiles
18
+ Factur-X Version 1.08 (aka ZUGFeRD 2.4). The following Factur-X profiles
19
19
  are currently supported:
20
20
 
21
21
  - Minimum
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "PyCheval"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Factur-X/ZUGFeRD parsing and generation library for Python"
5
5
  authors = [{ name = "Sebastian Rittau", email = "sebastian.rittau@zfutura.de" }]
6
6
  readme = "README.md"
@@ -22,6 +22,9 @@ class QuantityCode(StrEnum):
22
22
  PIECE = "H87" # aka "item"
23
23
  HOUR = "HUR"
24
24
  DAY = "DAY"
25
+ WEEK = "WEE"
26
+ MONTH = "MON"
27
+ YEAR = "ANN"
25
28
  LITER = "LTR"
26
29
  CUBIC_METERS = "MTQ"
27
30
  KILOGRAM = "KGM"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes