This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
/
setup.py
182 lines (155 loc) · 6.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------#
# Copyright © 2015-2016 VMware, Inc. All Rights Reserved. #
# #
# Licensed under the BSD 2-Clause License (the “License”); you may not use #
# this file except in compliance with the License. #
# #
# The BSD 2-Clause License #
# #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions are met:#
# #
# - Redistributions of source code must retain the above copyright notice, #
# this list of conditions and the following disclaimer. #
# #
# - Redistributions in binary form must reproduce the above copyright #
# notice, this list of conditions and the following disclaimer in the #
# documentation and/or other materials provided with the distribution. #
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"#
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE #
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE #
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE #
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR #
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF #
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS #
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN #
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) #
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF #
# THE POSSIBILITY OF SUCH DAMAGE. #
# ----------------------------------------------------------------------------#
#
# Includes
#
import os
import sys
from setuptools import setup, find_packages
try: # for pip >= 10
from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
except ImportError: # for pip <= 9.0
from pip.req import parse_requirements
from pip.download import PipSession
#
# Useful Variables
#
PACKAGE_NAME = "liota"
PACKAGE_VERSION = "0.4.1"
#
# Functions
#
def get_tree_walk(path):
"""
Get the file names list present in directory or its sub-directories
:param path: Directory Path
:return: File name list
"""
filename_list = []
for dirpath, dirname, filenames in os.walk(path):
# We need to remove the leading directory
# as the os.walk adds it in, and it's not super
# useful to us in this case as we know it
dirpath_split = (dirpath.split(os.path.sep)[1:])
if( len( dirpath_split) > 0 ):
dirpath_trunk = os.path.join(*(dirpath_split))
else:
dirpath_trunk = ""
# If the filenames isn't empty, add the filenames
if( len( filenames ) > 0):
filename_list.append((dirpath, filenames))
return filename_list
def get_data_files():
"""
Get data files name list required to be bundled with Liota
:return: Data Files list
"""
# Setup an empty return
data_files = []
#
# The following 4 lines would be useful if we were doing cross
# platform installation. It's currently unclear if this is
# supported so this is being left here in the off chance it
# becomes relevant
#
# if sys.platform == "win32":
# datadir = os.path.join("doc", PACKAGE_NAME)
# else:
# datadir = os.path.join("share", "doc", PACKAGE_NAME)
datadir = os.path.join(
os.path.abspath(os.sep),
"usr",
"lib",
PACKAGE_NAME
)
data_files = [
(datadir, ['BSD_LICENSE.txt', 'BSD_NOTICE.txt', 'post-install-setup.sh']),
]
for docs in ['examples', 'packages', 'config', ]:
file_list = get_tree_walk(docs)
if len(file_list):
for dirpath,files in file_list:
thesefiles = []
for sfile in files:
thesefiles.append(os.path.join(dirpath, sfile))
data_files.append((os.path.join(datadir, dirpath), thesefiles))
return data_files
#
# Python setup.py definitions
#
requirements = [str(requirement.req) for requirement in parse_requirements(
'requirements.txt', session=PipSession())]
# Python Version check
if not sys.version_info[0] == 2:
sys.exit('Python 3 is not supported')
# Python 2.7.9 sub-version check
if sys.version_info[1] < 7 or \
sys.version_info[1] == 7 and sys.version_info[2] < 9:
sys.exit('Python versions lower than 2.7.9 are not supported')
# Get the long description from the README file
with open('README.md') as f:
long_description = f.read()
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
packages=find_packages(exclude=["*.json", "*.txt",]),
description='Little IoT Agent (liota)',
long_description=long_description,
# include_package_data=True
# The project's main homepage.
url='https://github.com/vmware/liota',
author='Kohli Vaibhav (VMware)',
author_email='[email protected]',
# License
license='BSD',
platforms=['Linux'],
# Classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
# TO DO: Check for other python versions
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.3',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
],
keywords='iot liota agent',
# Installation requirement
install_requires=requirements,
# 'data_file'(conf_files) at custom location
data_files=get_data_files()
)