-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.13 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.13 KB
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
36
import os
from setuptools import find_packages
from setuptools import setup
package_name = 'ament_build_type_gradle'
setup(
name=package_name,
version='0.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=['ament-package', 'osrf_pycommon'],
zip_safe=True,
author='Esteve Fernandez',
author_email='[email protected]',
maintainer='Esteve Fernandez',
maintainer_email='[email protected]',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Gradle tool support for ament.',
license='Apache License, Version 2.0',
test_suite='test',
entry_points={
'ament.build_types': [f'ament_gradle = {package_name}:AmentGradleBuildType', ],
},
package_data={f'{package_name}': ['template/environment_hook/*.in']}, )