| [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"] |
|
|