-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (30 loc) · 1.24 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "deepxube"
description = "Solving pathfinding problems in an explainable manner with deep learning, reinforcement learning, heuristic search, and logic"
authors = [
{name = "Forest Agostinelli", email = "[email protected]"},
]
requires-python = ">= 3.10"
dependencies = ['torch>=2.0', 'numpy == 1.*', 'matplotlib', 'clingo', 'wget', 'filelock', 'pillow', 'types-Pillow', 'imageio']
license = {file = "LICENSE.txt"}
readme = "README.md"
keywords = ["DeepXube", "DeepCubeA", "DeepCube", "deep learning", "reinforcement learning", "search", "heuristic search", "pathfinding", "planning", "Rubik's Cube", "Sliding Tile Puzzle", "Sokoban"]
[project.urls]
Repository = "https://github.com/forestagostinelli/DeepXube/"
[tool.setuptools.dynamic]
version = {attr = "deepxube.__version__"}
# [tool.setuptools]
# packages = ['deepxube']
[tool.setuptools.packages.find]
# where = ["deepxube"]
include = ["deepxube*"] # alternatively: `exclude = ["additional*"]`
namespaces = false
[project.optional-dependencies]
test = ['pytest', 'pytest-cov', 'mypy', 'flake8', 'tox']
[tool.pytest.ini_options]
addopts = "--cov=deepxube"
testpaths = ["tests"]