-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (33 loc) · 1.13 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
[tool.poetry]
name = "mplbasketball"
version = "1.0.0"
description = "A Python plotting library for visualization of basketball data."
authors = ["Sreekar Voleti <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mlsedigital/mplbasketball"
repository = "https://github.com/mlsedigital/mplbasketball"
keywords = ["basketball", "visualization", "plotting", "matplotlib"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization"
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.26"
matplotlib = "^3.4"
[tool.poetry.urls]
"Issues" = "https://github.com/mlsedigital/mplbasketball/issues"
[tool.poetry.dev-dependencies]
pytest = "7.4.2"
pytest-mpl = "0.17.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"