Whats the proper way to use a proprietary software license according to ament_copyright?
I'm exploring ROS2, and I'm currently looking into unit testing.
I'm running the following commands,
colcon test
colcon test-result --verbose
I'm always getting a warning for a missing license:
test/test_something.py: copyright=My Company (2020), license=<unknown>
This is the header for my test_something.py file:
# Copyright 2020 My Company
# Proprietary License
Whats the proper text to include in the header for the warning to go away, for a Proprietary Software License? I've taken a look at the ament_copyright documentation but I didn't find an answer to my question.