-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathsetup.py
50 lines (46 loc) · 1.71 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import glob
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
package_name = 'launch_pytest'
setup(
name=package_name,
version='3.8.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages', [f'resource/{package_name}']),
(f'share/{package_name}', ['package.xml']),
(
f'share/{package_name}/examples',
[x for x in glob.glob(
f'test/{package_name}/examples/[!_]*') if Path(x).is_file()]
),
(
f'share/{package_name}/examples/executables',
glob.glob(f'test/{package_name}/examples/executables/[!_]*')
),
],
entry_points={
'pytest11': ['launch_pytest = launch_pytest.plugin'],
},
install_requires=['setuptools'],
zip_safe=True,
author='Ivan Paunovic',
author_email='[email protected]',
maintainer='Aditya Pande, Brandon Ong, William Woodall',
url='https://github.com/ros2/launch',
download_url='https://github.com/ros2/launch/releases',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Create tests which involve launch files and multiple processes.',
long_description=('A package to create tests which involve'
' launch files and multiple processes.'),
license='Apache License, Version 2.0',
tests_require=['pytest'],
)