-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 808 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "astar"
version = "1.1"
description = "generic A-Star path searching algorithm"
license = "BSD"
authors = ["J Rialland <julien.rialland@gmail.com>"]
readme = "README.rst"
repository = "https://github.com/jrialland/python-astar"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python",
]
packages = [
{ include = "astar" },
]
[tool.poetry.dependencies]
python = ">=3.12,<4.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.3.0"
pytest = ">=7.2.0"
mypy = ">=0.991"
twine = ">=4.0.2"