Bin Yang fe8742498f Update License Statement for notificationservice
Story: 2008529
Task: 41923

Signed-off-by: Bin Yang <bin.yang@windriver.com>
Change-Id: I82ba9a93e56087d4f13d3d44c6919dd8c423d21a
2021-02-24 09:54:23 +08:00

29 lines
622 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (c) 2021 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='ptptrackingfunction',
version='0.1',
description='',
author='',
author_email='',
install_requires=[
"",
],
test_suite='ptptrackingfunction',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup'])
)