verily 0.1.0__tar.gz → 0.1.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.
- {verily-0.1.0 → verily-0.1.2}/PKG-INFO +1 -1
- {verily-0.1.0 → verily-0.1.2}/pyproject.toml +5 -4
- {verily-0.1.0 → verily-0.1.2}/src/verily/runner.py +1 -1
- {verily-0.1.0 → verily-0.1.2}/.gitignore +0 -0
- {verily-0.1.0 → verily-0.1.2}/LICENSE +0 -0
- {verily-0.1.0 → verily-0.1.2}/README.md +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/__init__.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/display.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/io.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/main.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/models.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/stats.py +0 -0
- {verily-0.1.0 → verily-0.1.2}/src/verily/utils.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "verily"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.2"
|
8
8
|
description = "Simple stability testing test for stochastic systems"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.11"
|
@@ -19,7 +19,7 @@ dependencies = [
|
|
19
19
|
]
|
20
20
|
|
21
21
|
[project.scripts]
|
22
|
-
|
22
|
+
verily = "verily.main:app"
|
23
23
|
|
24
24
|
[dependency-groups]
|
25
25
|
dev = [
|
@@ -63,7 +63,8 @@ extend-select = [
|
|
63
63
|
msg = "The @pytest.mark.asyncio decorator is not needed as `asyncio_mode` is set to `auto` for the project."
|
64
64
|
|
65
65
|
[tool.hatch.build.targets.sdist]
|
66
|
-
|
66
|
+
include = ["/src", "/pyproject.toml", "/README.md", "/LICENSE"]
|
67
67
|
|
68
68
|
[tool.hatch.build.targets.wheel]
|
69
|
-
|
69
|
+
packages = ["src/verily"]
|
70
|
+
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|