File size: 1,068 Bytes
653c38a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "la-liga-score-predictor"
version = "2026.04.1"
description = "A lightweight Spanish La Liga pre-match football score prediction package."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
  { name = "La Liga Score Predictor Contributors" }
]
dependencies = [
  "catboost==1.2.8",
  "numpy==2.0.2",
  "pandas==2.2.2",
  "scipy==1.14.1",
]
keywords = ["football", "soccer", "la-liga", "prediction", "catboost"]
classifiers = [
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3.10",
  "Programming Language :: Python :: 3.11",
  "Intended Audience :: Developers",
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
]

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
include = ["la_liga_score_predictor*"]

[tool.setuptools.package-data]
la_liga_score_predictor = ["artifacts/*.json", "artifacts/*.cbm"]