@mat3ra/made 2026.6.11-0 → 2026.6.11-1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mat3ra/made",
3
- "version": "2026.6.11-0",
3
+ "version": "2026.6.11-1",
4
4
  "description": "MAterials DEsign library",
5
5
  "scripts": {
6
6
  "lint": "eslint --cache src/js tests/js && prettier --write src/js tests/js",
package/pyproject.toml CHANGED
@@ -74,6 +74,10 @@ git_describe_command = "git describe --tags --long"
74
74
  [tool.setuptools.packages.find]
75
75
  where = ["src/py"]
76
76
 
77
+ [tool.setuptools.package-data]
78
+ "mat3ra.made" = ["constants.json"]
79
+
80
+
77
81
  [tool.black]
78
82
  line-length = 120
79
83
  target-version = ['py38']
@@ -1,7 +1,7 @@
1
1
  import json
2
2
  import os
3
3
 
4
- _CONSTANTS_FILE = os.path.join(os.path.dirname(__file__), "../../../../constants.json")
4
+ _CONSTANTS_FILE = os.path.join(os.path.dirname(__file__), "constants.json")
5
5
  with open(_CONSTANTS_FILE) as f:
6
6
  _CONSTANTS = json.load(f)
7
7