mattergraph-core 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,31 @@
1
+ """MatterGraph core: materials schema, crystal graphs, and basic scoring."""
2
+
3
+ from importlib import metadata
4
+
5
+ from mattergraph.schema.context import PropertyContext, Quantity, SourceArtifact
6
+ from mattergraph.schema.dataset import DatasetManifest
7
+ from mattergraph.schema.material import Material
8
+ from mattergraph.schema.property import MaterialProperty
9
+ from mattergraph.schema.provenance import ProvenanceRecord
10
+ from mattergraph.schema.result import SimulationResultEnvelope
11
+ from mattergraph.scoring.scorecard import Scorecard
12
+ from mattergraph.store import MaterialStore
13
+
14
+ __all__ = [
15
+ "DatasetManifest",
16
+ "Material",
17
+ "MaterialProperty",
18
+ "PropertyContext",
19
+ "ProvenanceRecord",
20
+ "Quantity",
21
+ "SimulationResultEnvelope",
22
+ "SourceArtifact",
23
+ "MaterialStore",
24
+ "Scorecard",
25
+ "__version__",
26
+ ]
27
+
28
+ try:
29
+ __version__ = metadata.version("mattergraph-core")
30
+ except metadata.PackageNotFoundError:
31
+ __version__ = "0.0.0"