-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
72 lines (68 loc) · 2.37 KB
/
setup.py
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
66
67
68
69
70
71
72
#!/usr/bin/env python3
from setuptools import setup, find_packages # type: ignore
import unified_planning
long_description = "Unified Planning: A library that makes it easy to formulate planning problems and to invoke automated planners."
setup(
name="unified_planning",
version=unified_planning.__version__,
description="Unified Planning Framework",
long_description=long_description,
long_description_content_type="text/markdown",
author="AIPlan4EU Project",
author_email="[email protected]",
url="https://www.aiplan4eu-project.eu",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=["pyparsing", "networkx", "ConfigSpace"],
extras_require={
"dev": ["tarski[arithmetic]", "pytest", "pytest-cov", "mypy"],
"grpc": ["grpcio", "grpcio-tools", "grpc-stubs"],
"tarski": ["tarski[arithmetic]"],
"pyperplan": ["up-pyperplan~=1.1.0"],
"tamer": ["up-tamer~=1.1.0"],
"enhsp": ["up-enhsp~=0.0.24"],
"fast-downward": ["up-fast-downward==0.4.1"],
"lpg": ["up-lpg==0.0.10"],
"fmap": ["up-fmap==0.0.13"],
"aries": ["up-aries>=0.3.3"],
"symk": ["up-symk>=1.3.0"],
"engines": [
"tarski[arithmetic]",
"up-pyperplan~=1.1.0",
"up-tamer~=1.1.0",
"up-enhsp~=0.0.24",
"up-fast-downward==0.4.1",
"up-lpg==0.0.10",
"up-fmap==0.0.13",
"up-aries>=0.3.3",
"up-symk>=1.3.0",
],
"plot": [
"plotly",
"matplotlib==3.7.3",
"kaleido",
"pygraphviz",
"graphviz",
"pandas",
],
},
license="APACHE",
keywords="planning logic STRIPS RDDL",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
"up = unified_planning.cmd.up:main",
],
},
)