-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
94 lines (82 loc) · 2.11 KB
/
pyproject.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "penaltyblog"
version = "1.0.4"
description = "Library from http://pena.lt/y/blog for scraping and modelling football (soccer) data"
authors = [{ name = "Martin Eastwood", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"football",
"soccer",
"goals",
"modelling",
"dixon coles",
"poisson",
"bayesian",
"scraper",
"scraping",
"backtest",
]
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4==4.12.3,<5.0.0",
"cmdstanpy==1.2.4,<2.0.0",
"cssselect==1.2.0,<2.0.0",
"lxml==5.3.0,<6.0.0",
"html5lib==1.1,<2.0.0",
"ipywidgets==8.1.5,<9.0.0",
"numpy==2.1.3,<3.0.0",
"pandas==2.2.3,<3.0.0",
"PuLP==2.9.0,<3.0.0",
"requests==2.32.3,<3.0.0",
"scipy==1.14.1,<2.0.0",
"tqdm==4.67.1,<5.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/martineastwood/penaltyblog"
Repository = "https://github.com/martineastwood/penaltyblog"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"penaltyblog.models" = ["stan_files/*.stan"]
[project.optional-dependencies]
dev = [
"build",
"black>=22.6.0",
"Sphinx>=5.1.1",
"nbsphinx>=0.8.9",
"Pygments>=2.12.0",
"coverage>=6.4.2",
"pytest>=7.1.2",
"numpydoc>=1.4.0",
"ipython>=8.4.0",
"sphinx-rtd-theme>=1.0.0",
"pre-commit>=2.20.0",
"coveralls>=3.3.1",
"jupyterlab>=3.4.4",
"jupyterlab-code-formatter>=1.5.2",
"setuptools>=75.6.0",
]
[tool.coverage.paths]
source = ["penaltyblog", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["penaltyblog"]
[tool.coverage.report]
show_missing = true
ignore_errors = true
[tool.isort]
profile = "black"
src_paths = ["penaltyblog", "tests"]
include_trailing_comma = true
line_length = 79