pythermodb-settings 0.1.4__tar.gz → 0.1.5__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 (23) hide show
  1. {pythermodb_settings-0.1.4/pythermodb_settings.egg-info → pythermodb_settings-0.1.5}/PKG-INFO +1 -1
  2. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pyproject.toml +1 -1
  3. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/configs/about.py +1 -1
  4. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/__init__.py +3 -1
  5. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5/pythermodb_settings.egg-info}/PKG-INFO +1 -1
  6. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/LICENSE +0 -0
  7. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/README.md +0 -0
  8. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/__init__.py +0 -0
  9. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/app.py +0 -0
  10. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/configs/__init__.py +0 -0
  11. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/components.py +0 -0
  12. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/conditions.py +0 -0
  13. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/configs.py +0 -0
  14. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/references.py +0 -0
  15. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/rules.py +0 -0
  16. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/models/source.py +0 -0
  17. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/utils/__init__.py +0 -0
  18. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings/utils/component_utils.py +0 -0
  19. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings.egg-info/SOURCES.txt +0 -0
  20. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings.egg-info/dependency_links.txt +0 -0
  21. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings.egg-info/requires.txt +0 -0
  22. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/pythermodb_settings.egg-info/top_level.txt +0 -0
  23. {pythermodb_settings-0.1.4 → pythermodb_settings-0.1.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythermodb-settings
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Add your description here
5
5
  Author-email: Sina Gilassi <sina.gilassi@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pythermodb-settings"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  description = "Add your description here"
9
9
  authors = [
10
10
  { name = "Sina Gilassi", email = "sina.gilassi@gmail.com" }
@@ -1,5 +1,5 @@
1
1
  # NOTE: app info
2
- __version__ = "0.1.4"
2
+ __version__ = "0.1.5"
3
3
  __description__ = """PyThermoDB Settings is a Python package that acts as an interface between pythermdb and other applications, providing robust, Pydantic-based data models and configuration structures for managing thermodynamic database (ThermoDB) settings."""
4
4
  __author__ = "Sina Gilassi"
5
5
  __author_email__ = "sina.gilassi@gmail.com"
@@ -6,7 +6,8 @@ from .references import (
6
6
  ReferenceThermoDB,
7
7
  ComponentReferenceThermoDB,
8
8
  ReferencesThermoDB,
9
- CustomReference
9
+ CustomReference,
10
+ MixtureReferenceThermoDB
10
11
  )
11
12
  from .rules import ComponentRule
12
13
  from .source import ComponentThermoDBSource
@@ -21,6 +22,7 @@ __all__ = [
21
22
  "ComponentReferenceThermoDB",
22
23
  "ReferencesThermoDB",
23
24
  "CustomReference",
25
+ "MixtureReferenceThermoDB",
24
26
  "ComponentRule",
25
27
  "ComponentThermoDBSource"
26
28
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythermodb-settings
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Add your description here
5
5
  Author-email: Sina Gilassi <sina.gilassi@gmail.com>
6
6
  License-Expression: MIT