calkit-python 0.0.1__tar.gz → 0.0.2__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 (29) hide show
  1. {calkit_python-0.0.1 → calkit_python-0.0.2}/PKG-INFO +2 -1
  2. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/__init__.py +1 -1
  3. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/cli.py +2 -0
  4. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/cloud.py +2 -0
  5. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/config.py +2 -0
  6. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/core.py +2 -0
  7. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/data.py +2 -0
  8. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/dvc.py +2 -0
  9. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/git.py +2 -0
  10. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/jupyter.py +2 -0
  11. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/server.py +2 -0
  12. {calkit_python-0.0.1 → calkit_python-0.0.2}/pyproject.toml +1 -0
  13. {calkit_python-0.0.1 → calkit_python-0.0.2}/.github/FUNDING.yml +0 -0
  14. {calkit_python-0.0.1 → calkit_python-0.0.2}/.github/workflows/publish-test.yml +0 -0
  15. {calkit_python-0.0.1 → calkit_python-0.0.2}/.github/workflows/publish.yml +0 -0
  16. {calkit_python-0.0.1 → calkit_python-0.0.2}/.gitignore +0 -0
  17. {calkit_python-0.0.1 → calkit_python-0.0.2}/LICENSE +0 -0
  18. {calkit_python-0.0.1 → calkit_python-0.0.2}/README.md +0 -0
  19. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/gui.py +0 -0
  20. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/tests/__init__.py +0 -0
  21. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/tests/test_core.py +0 -0
  22. {calkit_python-0.0.1 → calkit_python-0.0.2}/calkit/tests/test_jupyter.py +0 -0
  23. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/cfd-study/README.md +0 -0
  24. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/cfd-study/calkit.yaml +0 -0
  25. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/cfd-study/config/simulations/runs.csv +0 -0
  26. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/cfd-study/notebook.ipynb +0 -0
  27. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/ms-office/.gitignore +0 -0
  28. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/ms-office/README.md +0 -0
  29. {calkit_python-0.0.1 → calkit_python-0.0.2}/examples/ms-office/calkit.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: calkit-python
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Reproducibility made easy.
5
5
  Project-URL: Homepage, https://github.com/calkit/calkit
6
6
  Project-URL: Issues, https://github.com/calkit/calkit/issues
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.8
13
13
  Requires-Dist: dvc
14
+ Requires-Dist: eval-type-backport; python_version < '3.10'
14
15
  Requires-Dist: fastapi
15
16
  Requires-Dist: gitpython
16
17
  Requires-Dist: keyring
@@ -1,4 +1,4 @@
1
- __version__ = "0.0.1"
1
+ __version__ = "0.0.2"
2
2
 
3
3
  from .core import *
4
4
  from . import git
@@ -1,5 +1,7 @@
1
1
  """The command line interface."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import os
4
6
  import pty
5
7
  import subprocess
@@ -1,5 +1,7 @@
1
1
  """The REST API client."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import os
4
6
  from functools import partial
5
7
  from typing import Literal
@@ -1,5 +1,7 @@
1
1
  """Configuration."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import os
4
6
  from typing import Literal
5
7
 
@@ -1,5 +1,7 @@
1
1
  """Core functionality."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import glob
4
6
  import os
5
7
 
@@ -1,5 +1,7 @@
1
1
  """Functionality for working with datasets."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  from typing import Literal, Union
4
6
 
5
7
  import pandas as pd
@@ -1,5 +1,7 @@
1
1
  """Working with DVC."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import logging
4
6
  import subprocess
5
7
 
@@ -1,5 +1,7 @@
1
1
  """Git-related functionality."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import git
4
6
 
5
7
 
@@ -1,5 +1,7 @@
1
1
  """Functionality for working with Jupyter."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import subprocess
4
6
 
5
7
  from pydantic import BaseModel
@@ -1,5 +1,7 @@
1
1
  """A local server for interacting with project repos."""
2
2
 
3
+ from __future__ import annotations
4
+
3
5
  import os
4
6
 
5
7
  import dvc
@@ -18,6 +18,7 @@ classifiers = [
18
18
  ]
19
19
  dependencies = [
20
20
  "dvc",
21
+ "eval-type-backport; python_version < '3.10'",
21
22
  "fastapi",
22
23
  "gitpython",
23
24
  "keyring",
File without changes
File without changes
File without changes