-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
65 lines (62 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "macq"
version = "0.3.11"
description = "Action model acquisition from state trace data."
# author="Ethan Callanan, Rebecca De Venezia, Victoria Armstrong, Alison Parades, Tathagata Chakraborti, Christian Muise",
authors = [
{name = "Ethan Callanan"},
{name = "Rebecca De Venezia"},
{name = "Victoria Armstrong"},
{name = "Alison Parades"},
{name = "Tathagata Chakraborti"},
]
maintainers = [
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["planning", "action model acquisition"]
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"tarski",
"requests",
"rich",
"nnf",
"python-sat",
"bauhaus",
"numpy",
"clingo",
"graphviz",
"networkx",
"pydot",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"flake8",
"black",
"pre-commit",
]
[project.urls]
Homepage = "https://macq.planning.domains"
Documentation = "https://ai-planning.github.io/macq/"
Repository = "https://github.com/ai-planning/macq"