-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
74 lines (66 loc) · 1.53 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
[tool.poetry]
name = "penaltyblog"
version = "0.8.2"
description = "Library from http://pena.lt/y/blog for scraping and modelling football (soccer) data"
authors = ["Martin Eastwood <[email protected]>"]
readme = "README.md"
license = "MIT"
include = ["LICENSE"]
keywords = [
"football",
"soccer",
"goals",
"modelling",
"dixon coles",
"poisson",
"bayesian",
"scraper",
"scraping",
"backtest",
]
repository = "https://github.com/martineastwood/penaltyblog"
homepage = "https://github.com/martineastwood/penaltyblog"
[tool.poetry.dependencies]
python = ">=3.10, <=3.12.6"
pandas = "^1.3.1"
numpy = "^1.21.1"
scipy = "^1.7.3"
PuLP = "^2.6.0"
selenium = "^4.3.0"
webdriver-manager = "^3.8.3"
lxml = "^4.9.1"
cssselect = "^1.1.0"
pymc = "^5.17"
tqdm = "^4.65.0"
ipywidgets = "^8.0.5"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
Sphinx = "^5.1.1"
nbsphinx = "^0.8.9"
Pygments = "^2.12.0"
coverage = "^6.4.2"
pytest = "^7.1.2"
bumpversion = "^0.6.0"
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"
[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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"