-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
executable file
·173 lines (150 loc) · 6.12 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
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
# Copyright (c) 2015, Arista Networks, Inc.
# All rights reserved.
#
# 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.
#
# Neither the name of Arista Networks nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# 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 ARISTA NETWORKS
# 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.
import io
import os
import shutil
import sys
from glob import glob
from ztpserver import config
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def install():
return bool("install" in sys.argv)
def join_url(x, y):
start = "" if x == "." else "/"
return start + "/".join([z for z in x.split("/") + y.split("/") if z])
def ensure_dir(f):
d = os.path.dirname(f)
if not os.path.exists(d):
os.makedirs(d)
def get_long_description():
"""Get the long description from README.md if it exists.
Null string is returned if README.md is non-existent
"""
long_description = ""
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as file_hdl:
long_description = file_hdl.read()
except IOError:
pass
return long_description
conf_path = config.CONF_PATH
install_path = config.INSTALL_PATH
if install() and os.environ.get("ZTPS_INSTALL_PREFIX"):
print("Customizing install for VirtualEnv install with RPM")
conf_path = join_url(os.environ.get("ZTPS_INSTALL_PREFIX"), config.CONF_PATH)
install_path = join_url(os.environ.get("ZTPS_INSTALL_PREFIX"), config.INSTALL_PATH)
packages = ["ztpserver"]
if install() and os.environ.get("READTHEDOCS"):
print("Customizing install for ReadTheDocs.org build servers...")
conf_path = "." + conf_path
install_path = "." + install_path
os.environ["ZTPS_INSTALL_ROOT"] = "."
from subprocess import call
call(["docs/setup_rtd_files.sh"])
packages.append("client")
packages.append("actions")
packages.append("plugins")
install_requirements = open("requirements.txt").read().split("\n")
install_requirements = [
x.strip() for x in install_requirements if x.strip() and "dev only" not in x
]
version = open("VERSION").read().split()[0].strip()
if os.environ.get("DYNAMIC_VERSION"):
version = os.environ.get("DYNAMIC_VERSION")
if os.environ.get("DEV_VERSION_HASH"):
version = f"{version}+{os.environ.get('DEV_VERSION_HASH')}"
data_files = []
# configuration folders are not cleared on upgrade/downgrade
for folder in ["nodes", "definitions", "files", "resources", "bootstrap", "config-handlers"]:
path = f"{install_path}/{folder}"
if install() and not os.path.isdir(path):
if os.path.exists(path):
os.remove(path)
data_files += [(path, [])]
for filename, dst, src in [
("neighbordb", install_path, "conf/neighbordb"),
("bootstrap.conf", f"{install_path}/bootstrap", "conf/bootstrap.conf"),
("ztpserver.conf", conf_path, "conf/ztpserver.conf"),
("ztpserver.wsgi", conf_path, "conf/ztpserver.wsgi"),
]:
file_path = f"{dst}/{filename}"
if install() and os.path.exists(file_path):
if os.path.isdir(file_path):
shutil.rmtree(file_path, ignore_errors=True)
else:
# do this manually
shutil.copy(src, file_path + ".new")
continue
data_files += [(dst, glob(src))]
# bootstrap file, libraries, VERSION, plugins and actions are
# always overwritten
file_list = [("bootstrap", f"{install_path}/bootstrap", "client/bootstrap")]
for filename in glob("actions/*"):
file_list += [(filename.split("/")[-1], f"{install_path}/actions", filename)]
for filename in glob("plugins/*"):
file_list += [(filename.split("/")[-1], f"{install_path}/plugins", filename)]
for filename in glob("client/lib/*"):
file_list += [(filename.split("/")[-1], f"{install_path}/files/lib", filename)]
for filename, dst, src in file_list:
file_path = f"{dst}/{filename}"
if install() and os.path.exists(file_path) and os.path.isdir(file_path):
shutil.rmtree(file_path, ignore_errors=True)
data_files += [(dst, glob(src))]
setup(
name="ztpserver",
version=version,
description="ZTP Server for EOS",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Arista Networks",
author_email="eosplus-dev@arista.com",
url="https://github.com/arista-eosplus/ztpserver",
download_url=f"https://github.com/arista-eosplus/ztpserver/tarball/v{version}",
license="BSD-3",
install_requires=install_requirements,
packages=packages,
scripts=glob("bin/*"),
data_files=data_files,
)
# hidden version file
if install():
custom_path = os.environ.get("ZTPS_INSTALL_ROOT")
if custom_path:
version_file = join_url(custom_path, config.VERSION_FILE_PATH)
else:
version_file = config.VERSION_FILE_PATH
ensure_dir(version_file)
shutil.copy("VERSION", version_file)