From ada138c0395b727eacb48c47693dd83f77df49bf Mon Sep 17 00:00:00 2001 From: nsubiron Date: Fri, 22 Dec 2017 19:14:16 +0100 Subject: [PATCH] Some improvements to setup.py --- .gitignore | 3 +++ PythonClient/setup.py | 21 ++++++++++++--------- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 2aef97e3e..6ef363893 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,11 @@ Dist Doxygen +PythonClient/dist Util/Build *.VC.db *.VC.opendb +*.egg-info *.kdev4 *.log *.pb.cc @@ -25,3 +27,4 @@ __pycache__ _benchmarks_results _images core + diff --git a/PythonClient/setup.py b/PythonClient/setup.py index d1317032d..31e26f2de 100644 --- a/PythonClient/setup.py +++ b/PythonClient/setup.py @@ -1,12 +1,15 @@ from setuptools import setup -setup( - name='PythonClient', - version='0.7', - packages=['carla','carla.planner','carla.benchmarks','carla.planner'], - license='', - long_description=open('README.txt').read(), - include_package_data=True, - package_data={'carla.planner' : ['Town01.txt']} -) +# @todo Dependencies are missing. +setup( + name='carla_client', + version='0.7.1', + packages=['carla', 'carla.planner', 'carla.benchmarks', 'carla.planner'], + license='MIT License', + description='Python API for communicating with the CARLA server.', + url='https://github.com/carla-simulator/carla', + author='The CARLA team', + author_email='carla.simulator@gmail.com', + include_package_data=True +)