forked from IBM/kstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (36 loc) · 1.17 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
45
46
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "kstar-planner"
description = "Kstar Planner is an Automated PDDL based planner that includes planners for top-k and top-quality planning computational tasks."
readme = "README-pypi.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["planning"]
authors = [
{name = "Michael Katz, Junkyu Lee", email="[email protected]"}
]
dependencies = []
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
"Homepage" = "https://github.com/IBM/kstar"
[tool.setuptools]
py-modules = ["_custom_build"]
[tool.setuptools.cmdclass]
build_py = "_custom_build.BuildPy"
build_ext = "_custom_build.BuildCMakeExt"
bdist_wheel = "_custom_build.bdist_wheel"
[tool.setuptools.package-data]
kstar = ["builds/release/bin/**/*", "builds/release/bin/*", "driver/portfolios/*"]
[tool.setuptools.packages.find]
include = ["kstar_planner*"]
[tool.setuptools_scm]
write_to = "kstar_planner/__version__.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]