Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py #26

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
LTL Optimal Multi-Agent Planner (LOMAP)
# LTL Optimal Multi-Agent Planner (LOMAP)o
This repository is a fork of `github.com/wasserfeder/lomap.git`.

Setup
-----
```
pip install -e .
```

README from Original Repository
=======================================

LTL Optimal Multi-Agent Planner (LOMAP) is a python package for automatic
Expand Down
3 changes: 1 addition & 2 deletions lomap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@
from .algorithms.inc_syn import *
from .algorithms.srfs import *
from .classes.automata import spot_output_encoding, ltl2dstar_output_encoding

__version__ = (0, 1, 2)
from .version import __version__
1 change: 1 addition & 0 deletions lomap/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = (0, 1, 2)
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

import os
from setuptools import setup

import lomap
version = {}
root_dir = os.path.dirname(os.path.abspath(__file__))
with open(root_dir + "/lomap/version.py") as fp:
exec(fp.read(), version)

version = '.'.join(map(str, lomap.__version__))

setup(
name='lomap',
version=version,
version=".".join([str(i) for i in version['__version__']]),
description='LTL Optimal Multi-Agent Planner (LOMAP)',
long_description = '',
classifiers = [
Expand All @@ -42,7 +45,7 @@
license='GNU GPLv2',
packages=['lomap', 'lomap.algorithms', 'lomap.classes'],
package_dir={'lomap': 'lomap'},
install_requires=['networkx >= 1.11', 'pp >= 1.6.2', 'matplotlib >= 1.3.1',
'setuptools >= 1.1.6'],
install_requires=['networkx >= 1.11', 'matplotlib >= 1.3.1',
'setuptools >= 1.1.6', 'six', 'pyyaml'],
zip_safe=False
)