-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "shin"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
version = "0.2.2"
description = "Python implementation of Shin's method for calculating implied probabilities from bookmaker odds"
authors = [
{name = "Maurice Berk", email = "[email protected]"},
]
readme = "README.md"
[project.urls]
Repository = "https://github.com/mberk/shin"
[tool.maturin]
python-source = "python"
[tool.mypy]
python_version = "3.9"
packages = ["shin", "tests"]
enable_error_code = [
"explicit-override",
"ignore-without-code",
"possibly-undefined",
"redundant-expr",
"redundant-self",
"truthy-bool",
"truthy-iterable",
"unimported-reveal",
"unused-awaitable",
]
disallow_any_unimported = true
show_error_codes = true
strict = true
warn_unreachable = true