Skip to content

Commit feac18f

Browse files
committed
Update setup.py
1 parent 2e14e0e commit feac18f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Package meta-data.
99
VERSION = py2pddl.__version__
10-
DESCRIPTION = "p2j: Convert Python scripts to Jupyter notebook with minimal intervention"
10+
DESCRIPTION = "py2pddl: Write planning task as Python classes, then translate to PDDL."
1111

1212
# Import the README and use it as the long-description.
1313
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
@@ -20,7 +20,7 @@
2020

2121
# This call to setup() does all the work
2222
setup(
23-
name="p2j",
23+
name="py2pddl",
2424
version=VERSION,
2525
description=DESCRIPTION,
2626
long_description=LONG_DESCRIPTION,
@@ -45,5 +45,8 @@
4545
],
4646
keywords='translate python pddl',
4747
packages=['py2pddl'],
48+
install_requires=[
49+
"fire==0.3.1",
50+
],
4851
include_package_data=True
4952
)

0 commit comments

Comments
 (0)