halfedge 0.5.0__tar.gz → 0.5.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 (28) hide show
  1. {halfedge-0.5.0/src/halfedge.egg-info → halfedge-0.5.1}/PKG-INFO +1 -1
  2. {halfedge-0.5.0 → halfedge-0.5.1}/pyproject.toml +2 -2
  3. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/__init__.py +2 -0
  4. {halfedge-0.5.0 → halfedge-0.5.1/src/halfedge.egg-info}/PKG-INFO +1 -1
  5. {halfedge-0.5.0 → halfedge-0.5.1}/.github/workflows/pypi-project.yml +0 -0
  6. {halfedge-0.5.0 → halfedge-0.5.1}/.gitignore +0 -0
  7. {halfedge-0.5.0 → halfedge-0.5.1}/.pre-commit-config.yaml +0 -0
  8. {halfedge-0.5.0 → halfedge-0.5.1}/README.md +0 -0
  9. {halfedge-0.5.0 → halfedge-0.5.1}/setup.cfg +0 -0
  10. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/half_edge_constructors.py +0 -0
  11. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/half_edge_elements.py +0 -0
  12. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/half_edge_object.py +0 -0
  13. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/half_edge_querries.py +0 -0
  14. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/py.typed +0 -0
  15. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/type_attrib.py +0 -0
  16. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge/validations.py +0 -0
  17. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge.egg-info/SOURCES.txt +0 -0
  18. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge.egg-info/dependency_links.txt +0 -0
  19. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge.egg-info/requires.txt +0 -0
  20. {halfedge-0.5.0 → halfedge-0.5.1}/src/halfedge.egg-info/top_level.txt +0 -0
  21. {halfedge-0.5.0 → halfedge-0.5.1}/tests/__init__.py +0 -0
  22. {halfedge-0.5.0 → halfedge-0.5.1}/tests/conftest.py +0 -0
  23. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_classes.py +0 -0
  24. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_constructors.py +0 -0
  25. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_elements.py +0 -0
  26. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_object_pickups.py +0 -0
  27. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_operations.py +0 -0
  28. {halfedge-0.5.0 → halfedge-0.5.1}/tests/test_validations.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: halfedge
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: A typical half-edge data structure with some padding
5
5
  Author-email: Shay Hill <shay_public@hotmail.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "halfedge"
3
- version = "0.5.0"
3
+ version = "0.5.1"
4
4
  description = "A typical half-edge data structure with some padding"
5
5
  authors = [{ name = "Shay Hill", email = "shay_public@hotmail.com" }]
6
6
  license = {text = "MIT"}
@@ -25,7 +25,7 @@ build-backend = "setuptools.build_meta"
25
25
 
26
26
  [tool.commitizen]
27
27
  name = "cz_conventional_commits"
28
- version = "0.5.0"
28
+ version = "0.5.1"
29
29
  tag_format = "$version"
30
30
  major-version-zero = true
31
31
  version_files = ["pyproject.toml:^version"]
@@ -8,6 +8,7 @@ from halfedge.type_attrib import (
8
8
  ContagionAttrib,
9
9
  IncompatibleAttrib,
10
10
  NumericAttrib,
11
+ StaticAttrib,
11
12
  Vector2Attrib,
12
13
  Vector3Attrib,
13
14
  )
@@ -22,6 +23,7 @@ __all__ = [
22
23
  "IncompatibleAttrib",
23
24
  "MeshElementBase",
24
25
  "NumericAttrib",
26
+ "StaticAttrib",
25
27
  "Vector2Attrib",
26
28
  "Vector3Attrib",
27
29
  "Vert",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: halfedge
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: A typical half-edge data structure with some padding
5
5
  Author-email: Shay Hill <shay_public@hotmail.com>
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes