carla/Deprecated/PythonClient/setup.py

17 lines
517 B
Python
Raw Normal View History

from setuptools import setup
2017-12-23 02:14:16 +08:00
# @todo Dependencies are missing.
setup(
2017-12-23 02:14:16 +08:00
name='carla_client',
2018-06-16 00:57:46 +08:00
version='0.8.4',
2018-04-10 02:35:35 +08:00
packages=['carla', 'carla.driving_benchmark', 'carla.agent',
2018-04-17 23:43:49 +08:00
'carla.driving_benchmark.experiment_suites', 'carla.planner'],
2017-12-23 02:14:16 +08:00
license='MIT License',
description='Python API for communicating with the CARLA server.',
url='https://github.com/carla-simulator/carla',
author='The CARLA team',
2018-01-29 18:45:46 +08:00
author_email='carla.simulator@gmail.com',
2017-12-23 02:14:16 +08:00
include_package_data=True
)