-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.06 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
41
42
43
44
[tool.poetry]
name = "gird"
version = "2.1.3"
description = "Make-like build tool & task runner for Python"
authors = ["Tuukka Ruhanen <tuukka.t.ruhanen@gmail.com>"]
homepage = "https://github.com/gird-dev/gird"
repository = "https://github.com/gird-dev/gird"
license = "MIT"
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools"
]
[tool.poetry.scripts]
gird = "gird.gird:main"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
isort = "^5.11.4"
black = "^22.12.0"
jinja2 = "^3.1.2"
tomli = "^2.0.1"
pytest-xdist = "^3.2.0"
pytest-cov = "^4.0.0"
mypy = "^1.1.1"
[tool.poetry.group.benchmark.dependencies]
matplotlib = "^3.8.0"
# NumPy is not a direct dependency; this is here for constraining the version to
# fix an issue with Python 3.12, https://github.com/numpy/numpy/issues/23808.
numpy = [
{version = "*", python=">=3.13"},
{version = "^1.26.0", python="<3.13"},
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"