1 # -*- coding: utf-8 -*-
2
3from distutils.core import setup
4
5setup(name='pymorse',
6      version='1.4',
7      license='BSD 3-clauses',
8      description='Python bindings for the Modular OpenRobots Simulation Engine (MORSE)',
9      author='Séverin Lemaignan, Pierrick Koch',
10      author_email='severin.lemaignan@plymouth.ac.uk, pierrick.koch@laas.fr',
11      classifiers=[
12        'Development Status :: 5 - Production/Stable',
13        'License :: OSI Approved :: BSD License',
14        'Programming Language :: Python :: 2.7',
15        'Programming Language :: Python :: 3.2',
16        'Programming Language :: Python :: 3.3',
17        'Programming Language :: Python :: 3.4',
18        'Programming Language :: Python :: 3.5',
19        'Topic :: Scientific/Engineering',
20      ],
21      url='http://morse.openrobots.org',
22      package_dir = {'':'src'},
23      packages=['pymorse'],
24      requires=['futures'],
25      )
26