We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e14e0e commit feac18fCopy full SHA for feac18f
setup.py
@@ -7,7 +7,7 @@
7
8
# Package meta-data.
9
VERSION = py2pddl.__version__
10
-DESCRIPTION = "p2j: Convert Python scripts to Jupyter notebook with minimal intervention"
+DESCRIPTION = "py2pddl: Write planning task as Python classes, then translate to PDDL."
11
12
# Import the README and use it as the long-description.
13
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
@@ -20,7 +20,7 @@
20
21
# This call to setup() does all the work
22
setup(
23
- name="p2j",
+ name="py2pddl",
24
version=VERSION,
25
description=DESCRIPTION,
26
long_description=LONG_DESCRIPTION,
@@ -45,5 +45,8 @@
45
],
46
keywords='translate python pddl',
47
packages=['py2pddl'],
48
+ install_requires=[
49
+ "fire==0.3.1",
50
+ ],
51
include_package_data=True
52
)
0 commit comments