Some improvements to setup.py
This commit is contained in:
parent
50418c1e06
commit
ada138c039
|
@ -1,9 +1,11 @@
|
||||||
Dist
|
Dist
|
||||||
Doxygen
|
Doxygen
|
||||||
|
PythonClient/dist
|
||||||
Util/Build
|
Util/Build
|
||||||
|
|
||||||
*.VC.db
|
*.VC.db
|
||||||
*.VC.opendb
|
*.VC.opendb
|
||||||
|
*.egg-info
|
||||||
*.kdev4
|
*.kdev4
|
||||||
*.log
|
*.log
|
||||||
*.pb.cc
|
*.pb.cc
|
||||||
|
@ -25,3 +27,4 @@ __pycache__
|
||||||
_benchmarks_results
|
_benchmarks_results
|
||||||
_images
|
_images
|
||||||
core
|
core
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
# @todo Dependencies are missing.
|
||||||
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']}
|
|
||||||
)
|
|
||||||
|
|
||||||
|
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
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue