-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (31 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup
setup(name='mrs',
packages=['mrs',
'mrs.config',
'mrs.config.default',
'mrs.db.models',
'mrs.db.models.performance',
'mrs.exceptions',
'mrs.allocation',
'mrs.tests',
'mrs.tests.datasets',
'mrs.messages',
'mrs.timetable',
'mrs.execution',
'mrs.simulation',
'mrs.performance',
'mrs.utils'],
install_requires=[
'simpy',
'planner@git+https://github.com/anenriquez/mrta_planner.git@master#egg=planner',
],
version='0.2.0',
description='Multi-Robot System (MRS) components for performing'
'Multi-Robot Task Allocation (MRTA) and executing'
'tasks with temporal constraints and uncertain '
'durations',
author='Angela Enriquez Gomez',
author_email='[email protected]',
package_dir={'': '.'}
)