-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import find_packages
from setuptools import setup
package_name = 'centernet_ros2'
setup(
name=package_name,
version='0.0.0',
packages=[package_name],
package_dir={package_name: package_name},
package_data={package_name: ['config/*']},
data_files=[],
install_requires=['setuptools'],
zip_safe=True,
author='amsl',
author_email='',
maintainer='',
maintainer_email='',
keywords=['ROS2'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description=(
),
license='',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'object_detector = centernet_ros2.object_detector:main'
],
},
)