valanga 0.1.3__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.
- valanga/__init__.py +42 -0
- valanga/evaluations.py +58 -0
- valanga/evaluator_types.py +13 -0
- valanga/game.py +158 -0
- valanga/over_event.py +254 -0
- valanga/policy.py +42 -0
- valanga/progress_messsage.py +20 -0
- valanga/py.typed +0 -0
- valanga/representation_factory.py +74 -0
- valanga/represention_for_evaluation.py +26 -0
- valanga-0.1.3.dist-info/METADATA +31 -0
- valanga-0.1.3.dist-info/RECORD +15 -0
- valanga-0.1.3.dist-info/WHEEL +5 -0
- valanga-0.1.3.dist-info/licenses/LICENSE +674 -0
- valanga-0.1.3.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: valanga
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Shared types and utilities for evalaution
|
|
5
|
+
Requires-Python: >=3.13
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Provides-Extra: test
|
|
8
|
+
Requires-Dist: pytest>=8.4.1; extra == "test"
|
|
9
|
+
Requires-Dist: coverage; extra == "test"
|
|
10
|
+
Requires-Dist: pytest-cov>=6.0.0; extra == "test"
|
|
11
|
+
Provides-Extra: lint
|
|
12
|
+
Requires-Dist: ruff>=0.14.10; extra == "lint"
|
|
13
|
+
Requires-Dist: pylint>=4.0.4; extra == "lint"
|
|
14
|
+
Provides-Extra: typecheck
|
|
15
|
+
Requires-Dist: mypy>=1.19.1; extra == "typecheck"
|
|
16
|
+
Requires-Dist: pyright[nodejs]>=1.1.408; extra == "typecheck"
|
|
17
|
+
Provides-Extra: dev
|
|
18
|
+
Requires-Dist: tox>=4.32.0; extra == "dev"
|
|
19
|
+
Requires-Dist: types-PyYAML>=6.0.12.12; extra == "dev"
|
|
20
|
+
Requires-Dist: ruff>=0.14.10; extra == "dev"
|
|
21
|
+
Requires-Dist: pylint>=4.0.4; extra == "dev"
|
|
22
|
+
Requires-Dist: black>=25.12.0; extra == "dev"
|
|
23
|
+
Requires-Dist: mypy>=1.19.1; extra == "dev"
|
|
24
|
+
Requires-Dist: pyright[nodejs]>=1.1.408; extra == "dev"
|
|
25
|
+
Requires-Dist: build; extra == "dev"
|
|
26
|
+
Requires-Dist: twine; extra == "dev"
|
|
27
|
+
Requires-Dist: sphinx; extra == "dev"
|
|
28
|
+
Requires-Dist: sphinx-rtd-theme; extra == "dev"
|
|
29
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "dev"
|
|
30
|
+
Requires-Dist: pre-commit; extra == "dev"
|
|
31
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
valanga/__init__.py,sha256=EFoB5P_lGQCXM1tLTc9ZvO5mt_Ui_MXStEpcPwptwd8,945
|
|
2
|
+
valanga/evaluations.py,sha256=5yqye-lYAAXyA5qPMeiPKoMxdsiiQlK-fFbr1eKyVmA,1495
|
|
3
|
+
valanga/evaluator_types.py,sha256=dRNY297Up2BSIM2557jy6cz0cINzfUHOpqkr1T6SSQM,344
|
|
4
|
+
valanga/game.py,sha256=szc1fsyKd3JOvpX9T4zDkGJGvIV0DaO2Qwsma_uQX7E,4408
|
|
5
|
+
valanga/over_event.py,sha256=jUqN3CXq3e55TvDZatZKFlEOzJfho7M1Zr7VjZUhP6M,7908
|
|
6
|
+
valanga/policy.py,sha256=lOp3Wcb9IOvfe_VhqmxXjzZ4518jY08nvuW_PyVtZnM,1214
|
|
7
|
+
valanga/progress_messsage.py,sha256=3LnOXSgyU84UkwcpsakcbPt_d3el2ojRSUClAwoPyEk,361
|
|
8
|
+
valanga/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
valanga/representation_factory.py,sha256=inM1mEd5Jot7Kx8OIdPltrBC8__wWwY7u8T1PqHfuF0,2480
|
|
10
|
+
valanga/represention_for_evaluation.py,sha256=3EnImf4DcYla70LXb19unOzzhPYlnFzj-nl3KJdReWk,885
|
|
11
|
+
valanga-0.1.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
12
|
+
valanga-0.1.3.dist-info/METADATA,sha256=ona3QywkPLfFhfGmVUI7A5xUr68yfVQ1zhl2wsJFEgU,1191
|
|
13
|
+
valanga-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
+
valanga-0.1.3.dist-info/top_level.txt,sha256=cKFLhxKDTqygHnc0xc_L8jDx6oNu5hSHqZ4UExU4xPo,8
|
|
15
|
+
valanga-0.1.3.dist-info/RECORD,,
|