1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-28 06:24:10 +01:00

LP-483 sets author to librepilot in all python files

This commit is contained in:
padeler 2017-02-17 20:37:47 +02:00
parent 116ec93332
commit 0ff0fe6532
10 changed files with 22 additions and 13 deletions

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file $(NAMELC).py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
# @brief Implementation of the $(NAME) object. This file has been
# automatically generated by the UAVObjectGenerator. For use with
# the PyMite VM of the FlightPlan module.

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file example.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file example_readlog.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file example.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file connectionManager.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file flighttelemetrystats.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Implementation of the FlightTelemetryStats object. This file has been
# automatically generated by the UAVObjectGenerator. For use with
# the PyMite VM of the FlightPlan module.

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file objectManager.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file uavobject.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -2,7 +2,8 @@
##############################################################################
#
# @file uavtalk.py
# @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @author The LibrePilot Project, http://www.librepilot.org Copyright (C) # 2017.
# The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
# @brief Base classes for python UAVObject
#
# @see The GNU Public License (GPL) Version 3

View File

@ -1,9 +1,9 @@
from distutils.core import setup
import glob
setup(name='OpenPilot UavTalk',
setup(name='LibrePilot UAVTalk',
version='1.0',
description='OpenPilot UavTalk',
url='http://www.openpilot.org',
packages=['openpilot', 'openpilot.uavtalk', 'openpilot.uavobjects'],
description='LibrePilot UAVTalk',
url='http://www.librepilot.org',
packages=['librepilot', 'librepilot.uavtalk', 'librepilot.uavobjects'],
)