Skip to content

Commit 58bfbba

Browse files
committed
change package name
1 parent f80426f commit 58bfbba

10 files changed

Lines changed: 16 additions & 18 deletions

File tree

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,15 @@ $ julia --color=yes -e 'using Pkg; Pkg.add(Pkg.PackageSpec(path="https://github.
4545

4646
```bash
4747
$ python3 -m pip install --upgrade pip
48-
$ git clone https://github.com/APLA-Toolbox/PythonPDDL
49-
$ cd PythonPDDL
50-
$ python3 -m pip install -r requirements.txt
48+
$ python3 -m pip install jupyddl
5149
```
5250

53-
# Usage
54-
55-
Navigate to the root directory and you can run the tool by using : `python3 main.py "data/domain.pddl" "data/problem.pddl"`
56-
5751
# REFL Mode
5852

59-
- Clone the repository: `git clone https://github.com/APLA-Toolbox/PythonPDDL`
60-
- Move to the repository folder: `cd PythonPDDL`
6153
- Run `python3` in the terminal.
6254
- Use the AutomatedPlanner class to do what you want:
6355
```python
64-
from src.automated_planner import AutomatedPlanner # takes some time because it has to instantiate the Julia interface
56+
from jupyddl import AutomatedPlanner # takes some time because it has to instantiate the Julia interface
6557
apl = AutomatedPlanner("data/domain.pddl", "data/problem.pddl)
6658

6759
apl.initial_state
@@ -85,15 +77,11 @@ print(apl.get_actions_from_path(path))
8577
[<PyCall.jlwrap flip_row(r1)>, <PyCall.jlwrap flip_row(r3)>, <PyCall.jlwrap flip_column(c2)>]
8678
```
8779

88-
# Script mode
89-
90-
UC
91-
9280
# Contribute
9381

9482
Open an issue to state clearly the contribution you want to make. Upon aproval send in a PR with the Issue referenced. (Implement Issue #No / Fix Issue #No).
9583

96-
# Contributors
84+
# Maintainers
9785

9886
- Erwin Lejeune
9987
- Sampreet Sarkar
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,32 @@
11
import setuptools
22

3+
with open('requirements.txt') as f:
4+
required = f.read().splitlines()
5+
36
with open("README.md", "r", encoding="utf-8") as fh:
47
long_description = fh.read()
8+
59

610
setuptools.setup(
7-
name="pythonpddl-guilyx", # Replace with your own username
8-
version="0.2.0",
11+
name="jupyddl", # Replace with your own username
12+
version="0.2.1",
913
author="Erwin Lejeune",
1014
author_email="erwinlejeune.pro@gmail.com",
11-
description="PythonPDDL is a PDDL planner built on top of a Julia parser",
15+
description="Jupyddl is a PDDL planner built on top of a Julia parser",
1216
long_description=long_description,
1317
long_description_content_type="text/markdown",
1418
url="https://github.com/apla-toolbox/pythonpddl",
1519
packages=setuptools.find_packages(),
20+
install_requires=required,
1621
classifiers=[
22+
"Programming Language :: Python :: 3 :: Only",
23+
"Programming Language :: Python :: 3.6",
24+
"Programming Language :: Python :: 3.7",
25+
"Programming Language :: Python :: 3.8",
1726
"Programming Language :: Python :: 3",
1827
"License :: OSI Approved :: Apache Software License",
1928
"Operating System :: Ubuntu, MacOS",
29+
"Framework :: Pytest",
2030
],
2131
python_requires=">=3.6",
2232
)

0 commit comments

Comments
 (0)