-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (32 loc) · 1.15 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 = "soccerbars"
version = "0.2.1"
description = "Word-sized tallies of association football results using multivariate sparklines based on Gestalt theory (gestaltlines)."
authors = ["M. Eren Akbiyik <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/meakbiyik/soccerbars"
repository = "https://github.com/meakbiyik/soccerbars"
keywords = ["soccer", "sparklines", "football", "association-football"]
[tool.poetry.dependencies]
python = "^3.8"
matplotlib = "^3.7.1"
numpy = "^1.24.0"
click = { version = "^7.1.2", optional = true }
colorama = { version = "^0.4.4", optional = true }
click-help-colors = { version = "^0.9", optional = true }
pandas = { version = "^2.0.3", optional = true }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
data-science-types = "^0.2.20"
ipykernel = "^5.3.4"
pytest = "^7.4.0"
coverage = "^5.3.1"
mock = "^4.0.3"
[tool.poetry.extras]
cli = ["click", "colorama", "click-help-colors", "pandas"]
[tool.poetry.scripts]
soccerbars = "soccerbars.__main__:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"