atomrdf 0.4.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.
Files changed (37) hide show
  1. atomrdf-0.4.0/LICENSE +21 -0
  2. atomrdf-0.4.0/MANIFEST.in +1 -0
  3. atomrdf-0.4.0/PKG-INFO +40 -0
  4. atomrdf-0.4.0/README.md +18 -0
  5. atomrdf-0.4.0/atomrdf/__init__.py +3 -0
  6. atomrdf-0.4.0/atomrdf/data/asmo.owl +1087 -0
  7. atomrdf-0.4.0/atomrdf/data/cmso.owl +1279 -0
  8. atomrdf-0.4.0/atomrdf/data/element.yml +61 -0
  9. atomrdf-0.4.0/atomrdf/data/pldo.owl +541 -0
  10. atomrdf-0.4.0/atomrdf/data/podo.owl +428 -0
  11. atomrdf-0.4.0/atomrdf/encoder.py +16 -0
  12. atomrdf-0.4.0/atomrdf/graph.py +547 -0
  13. atomrdf-0.4.0/atomrdf/json_io.py +24 -0
  14. atomrdf-0.4.0/atomrdf/network/__init__.py +0 -0
  15. atomrdf-0.4.0/atomrdf/network/network.py +271 -0
  16. atomrdf-0.4.0/atomrdf/network/ontology.py +51 -0
  17. atomrdf-0.4.0/atomrdf/network/parser.py +247 -0
  18. atomrdf-0.4.0/atomrdf/network/patch.py +28 -0
  19. atomrdf-0.4.0/atomrdf/network/term.py +238 -0
  20. atomrdf-0.4.0/atomrdf/properties.py +165 -0
  21. atomrdf-0.4.0/atomrdf/stores.py +64 -0
  22. atomrdf-0.4.0/atomrdf/structure.py +900 -0
  23. atomrdf-0.4.0/atomrdf/visualize.py +152 -0
  24. atomrdf-0.4.0/atomrdf/workflow/__init__.py +2 -0
  25. atomrdf-0.4.0/atomrdf/workflow/pyiron.py +241 -0
  26. atomrdf-0.4.0/atomrdf/workflow/workflow.py +297 -0
  27. atomrdf-0.4.0/atomrdf.egg-info/PKG-INFO +40 -0
  28. atomrdf-0.4.0/atomrdf.egg-info/SOURCES.txt +35 -0
  29. atomrdf-0.4.0/atomrdf.egg-info/dependency_links.txt +1 -0
  30. atomrdf-0.4.0/atomrdf.egg-info/not-zip-safe +1 -0
  31. atomrdf-0.4.0/atomrdf.egg-info/requires.txt +10 -0
  32. atomrdf-0.4.0/atomrdf.egg-info/top_level.txt +1 -0
  33. atomrdf-0.4.0/setup.cfg +4 -0
  34. atomrdf-0.4.0/setup.py +26 -0
  35. atomrdf-0.4.0/tests/test_encoder_and_write.py +18 -0
  36. atomrdf-0.4.0/tests/test_graph.py +24 -0
  37. atomrdf-0.4.0/tests/test_structuregraph.py +25 -0
atomrdf-0.4.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 pyscal
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.
@@ -0,0 +1 @@
1
+ include atomrdf/data/*.??l
atomrdf-0.4.0/PKG-INFO ADDED
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.1
2
+ Name: atomrdf
3
+ Version: 0.4.0
4
+ Summary: Ontology based structural manipulation and quering
5
+ Home-page: https://pyscal.org
6
+ Download-URL: https://github.com/pyscal/atomrdf
7
+ Author: Abril Azocar Guzman, Sarath Menon
8
+ Author-email: sarath.menon@pyscal.org
9
+ Classifier: Programming Language :: Python :: 3
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: numpy
13
+ Requires-Dist: ase
14
+ Requires-Dist: rdflib
15
+ Requires-Dist: pyyaml
16
+ Requires-Dist: graphviz
17
+ Requires-Dist: networkx
18
+ Requires-Dist: pyscal3
19
+ Requires-Dist: spglib
20
+ Requires-Dist: pandas
21
+ Requires-Dist: owlready2
22
+
23
+ # atomRDF
24
+
25
+ > [!NOTE]
26
+ > `atomRDF` was previously called `pyscal-rdf`.
27
+
28
+
29
+ `atomRDF` is a python tool for ontology-based creation, manipulation, and quering of structures. `atomRDF` uses the [Computational Material Sample Ontology (CMSO)](https://github.com/Materials-Data-Science-and-Informatics/cmso-ontology).
30
+
31
+ The package is currently under activate development and could be unstable .
32
+
33
+ More details coming soon...
34
+
35
+
36
+ ## Acknowledgements
37
+ This work is supported by the [NFDI-Matwerk](https://nfdi-matwerk.de/) consortia.
38
+
39
+ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) under the National Research Data Infrastructure – NFDI 38/1 – project number 460247524
40
+
@@ -0,0 +1,18 @@
1
+ # atomRDF
2
+
3
+ > [!NOTE]
4
+ > `atomRDF` was previously called `pyscal-rdf`.
5
+
6
+
7
+ `atomRDF` is a python tool for ontology-based creation, manipulation, and quering of structures. `atomRDF` uses the [Computational Material Sample Ontology (CMSO)](https://github.com/Materials-Data-Science-and-Informatics/cmso-ontology).
8
+
9
+ The package is currently under activate development and could be unstable .
10
+
11
+ More details coming soon...
12
+
13
+
14
+ ## Acknowledgements
15
+ This work is supported by the [NFDI-Matwerk](https://nfdi-matwerk.de/) consortia.
16
+
17
+ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) under the National Research Data Infrastructure – NFDI 38/1 – project number 460247524
18
+
@@ -0,0 +1,3 @@
1
+ from atomrdf.graph import KnowledgeGraph
2
+ from atomrdf.structure import System
3
+ from atomrdf.workflow.workflow import Workflow