-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 938 Bytes
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
[tool.poetry]
name = "python-mlb-statsapi"
version = "0.7.2"
description = "mlbstatsapi python wrapper"
authors = [
"Matthew Spah <spahmatthew@gmail.com>",
"Kristian Nilssen <krinilssen@gmail.com>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/zero-sum-seattle/python-mlb-statsapi"
repository = "https://github.com/zero-sum-seattle/python-mlb-statsapi"
packages = [{ include = "mlbstatsapi" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/zero-sum-seattle/python-mlb-statsapi/issues"
[tool.poetry.dependencies]
python = ">=3.10"
requests = ">=2"
pydantic = "^2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
requests-mock = "^1.10.0"
build = "^1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"