Some improvements to setup.py

This commit is contained in:
nsubiron 2017-12-22 19:14:16 +01:00
parent 50418c1e06
commit ada138c039
2 changed files with 15 additions and 9 deletions

3
.gitignore vendored
View File

@ -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

View File

@ -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
)