-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (48 loc) · 2.02 KB
/
setup.py
File metadata and controls
56 lines (48 loc) · 2.02 KB
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
51
52
53
54
55
56
"""
*File:* setup.py
*Author:* Salma Raiss < salma.raiss@iot.bzh >
*Description:*
Setup file needed for Python packaging
*License:*
Copyright (C) 2021-2022 IoT.bzh Company
Contact: https://www.iot.bzh/licensing
$RP_BEGIN_LICENSE$
Commercial License Usage
Licensees holding valid commercial IoT.bzh licenses may use this file in \
accordance with the commercial license agreement provided with the \
Software or, alternatively, in accordance with the terms contained in \
a written agreement between you and The IoT.bzh Company. For licensing terms \
and conditions see https://www.iot.bzh/terms-conditions. For further \
information use the contact form at https://www.iot.bzh/contact.
This file is part of the redpesk-service-ota module of the RedPesk project.
GNU General Public License Usage
Alternatively, this file may be used under the terms of the GNU General \
Public license version 3. This license is as published by the Free Software \
Foundation and appearing in the file LICENSE.GPLv3 included in the packaging \
of this file. Please review the following information to ensure the GNU \
General Public License requirements will be met \
https://www.gnu.org/licenses/gpl-3.0.html.
$RP_END_LICENSE$
"""
from setuptools import setup, find_packages
REQUIRES = ["coverage"]
setup(
name="helloworld-python-binding",
version="1.0.0",
description="A package for the HelloWorld Binding in Python3",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
],
author="Salma Raiss",
author_email="salma.raiss@iot.bzh",
url="https:///github.com/redpesk-samples/helloworld-python-binding.git",
license="GPLv3",
packages=find_packages(),
include_package_data=True,
python_requires=" >= 3.6",
install_requires=REQUIRES,
zip_safe=False,
)