-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.76 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
47
48
49
50
51
52
53
[project]
name = "up_fast_downward"
version = "0.5.0"
description = "Unified Planning Integration of the Fast Downward planning system"
readme = {text = "This package makes the [Fast Downward](https://www.fast-downward.org/) planning system available in the [unified_planning library](https://github.com/aiplan4eu/unified-planning).", content-type = "text/markdown"}
requires-python = ">=3.9"
license = {text = "GPL-3.0-only"}
authors = [
{name = "UNIBAS Team"},
]
maintainers = [
{name = "Gabriele Röger", email = "[email protected]"},
]
dependencies = ["setuptools>=59.6.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/aiplan4eu/up-fast-downward/"
[tool.setuptools]
py-modules = ["up_fast_downward._custom_build"]
[tool.setuptools.packages.find]
where = ["."]
include = ["up_fast_downward"] # ["*"] by default
#find = {}
[tool.setuptools.package-data]
up_fast_downward = [
'fast_downward.py',
'fast_downward_grounder.py',
'utils.py',
'downward/fast-downward.py',
'downward/README.md', 'downward/LICENSE.md',
'downward/builds/release/bin/*',
'downward/builds/release/bin/translate/*',
'downward/builds/release/bin/translate/pddl/*',
'downward/builds/release/bin/translate/pddl_parser/*',
'downward/driver/*', 'downward/driver/portfolios/*'
]
[tool.setuptools.cmdclass]
build_py = "up_fast_downward._custom_build.install_fast_downward"
bdist_wheel = "up_fast_downward._custom_build.bdist_wheel"
[build-system]
requires = ["setuptools>=59.6"]
build-backend = "setuptools.build_meta"