-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.22 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
38
39
40
[tool.poetry]
name = "coder-dojo-common-python"
version = "0.0.0"
description = "Common packages for coder dojo sessions"
authors = ["Stedders <[email protected]>"]
readme = "README.md"
packages = [{ include = "coder_dojo_common" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
beautifulsoup4 = "^4.11.1"
click = "^8.1.3"
colorama = "^0.4.6"
pydantic = "^1.10.4"
requests = "^2.28.2"
jupyterlab = { version = "^3.5.2", optional = true }
matplotlib = { version = "^3.6.3", optional = true }
numpy = { version = "^1.24.1", optional = true }
pandas = { version = "^1.5.2", optional = true }
pgzero = { version = "^1.2.1", optional = true }
plotly = { version = "^5.12.0", optional = true }
pygame = { version = "^2.1.2", optional = true }
yfinance = {version = "^0.2.4", optional = true}
[tool.poetry.extras]
data = ["jupyterlab", "matplotlib", "numpy", "pandas", "plotly", "yfinance"]
games = ["pgzero", "pygame"]
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry.scripts]
kenney-assets = "coder_dojo_common.cli:kenney"