forked from PickNikRobotics/picknik_ament_copyright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.15 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
from setuptools import find_packages
from setuptools import setup
package_name = 'locus_ament_copyright'
setup(
name=package_name,
version='0.4.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=['setuptools'],
package_data={'': [
'template/*',
]},
zip_safe=False,
url='https://github.com/locusrobotics/locus_ament_copyright',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 3-Clause License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Check source files for Locus Robotics-specific copyright reference.',
license='BSD',
tests_require=['pytest'],
entry_points={
'ament_copyright.copyright_name': [
'locus = locus_ament_copyright.copyright_names:locus',
],
'ament_copyright.license': [
'locus_proprietary = locus_ament_copyright.licenses:locus_proprietary',
],
},
)