-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.47 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "NHL-predictor"
version = "0.3.6"
authors = [
{ name="Matthew Wallace", email="matthew.r.wallace@live.com" }
]
description = "Tool to use NHL API stats to predict future game outcomes."
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Information Analysis"
]
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
dependencies = ["ansimarkup==2.1.0", "DateRangeParser==1.3.2", "nhl-api-py==3.0.2", "numpy==2.4.0", "pandas==2.3.3", "python_dateutil==2.9.0.post0", "python_json_logger==4.0.0", "Requests==2.32.5", "scikit_learn==1.8.0", "sqlitedict==2.1.0", "statsmodels==0.14.5", "tensorflow_cpu==2.20.0", "typer==0.20.1", "typing_extensions==4.15.0"]
[project.urls]
Homepage = "https://github.com/MattRWallace/NHLPredictor/"
Issues = "https://github.com/MattRWallace/NHLPredictor/issues"
[project.scripts]
nhlpredictor = "nhl_predictor.main:app"
[tool.hatch.build.targets.wheel]
packages = [
"src/nhl_predictor",
]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
[tool.setuptools.packages.find]
where = ["."]