2013-10-30 21:58:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-10-04 23:45:15 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import sys
|
2021-08-11 07:57:47 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
|
2013-10-08 17:33:51 +00:00
|
|
|
from setuptools import setup, find_packages
|
2013-10-04 23:45:15 +00:00
|
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
2022-03-14 04:43:26 +00:00
|
|
|
# we only support Python 3 version >= 3.7
|
|
|
|
if len(sys.argv) >= 2 and sys.argv[1] == "install" and sys.version_info < (3, 7, 0):
|
|
|
|
raise SystemExit("Python 3.7 or higher is required")
|
2013-10-04 23:45:15 +00:00
|
|
|
|
2015-06-09 15:29:01 +00:00
|
|
|
|
2014-08-09 11:05:31 +00:00
|
|
|
class PyTest(TestCommand):
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2013-10-04 23:45:15 +00:00
|
|
|
def finalize_options(self):
|
|
|
|
TestCommand.finalize_options(self)
|
|
|
|
self.test_args = []
|
|
|
|
self.test_suite = True
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2013-10-04 23:45:15 +00:00
|
|
|
def run_tests(self):
|
2015-01-20 12:24:00 +00:00
|
|
|
# import here, cause outside the eggs aren't loaded
|
2014-08-09 11:05:31 +00:00
|
|
|
import pytest
|
2015-05-08 22:33:06 +00:00
|
|
|
|
2014-08-09 11:05:31 +00:00
|
|
|
errcode = pytest.main(self.test_args)
|
2013-10-04 23:45:15 +00:00
|
|
|
sys.exit(errcode)
|
|
|
|
|
2020-06-26 09:38:21 +00:00
|
|
|
|
2021-08-11 07:57:47 +00:00
|
|
|
BUSYBOX_PATH = "gns3server/compute/docker/resources/bin/busybox"
|
|
|
|
|
|
|
|
|
|
|
|
def copy_busybox():
|
|
|
|
if not sys.platform.startswith("linux"):
|
|
|
|
return
|
|
|
|
if os.path.isfile(BUSYBOX_PATH):
|
|
|
|
return
|
|
|
|
for bb_cmd in ("busybox-static", "busybox.static", "busybox"):
|
|
|
|
bb_path = shutil.which(bb_cmd)
|
|
|
|
if bb_path:
|
|
|
|
if subprocess.call(["ldd", bb_path],
|
|
|
|
stdin=subprocess.DEVNULL,
|
|
|
|
stdout=subprocess.DEVNULL,
|
|
|
|
stderr=subprocess.DEVNULL):
|
|
|
|
shutil.copy2(bb_path, BUSYBOX_PATH, follow_symlinks=True)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise SystemExit("No static busybox found")
|
|
|
|
|
|
|
|
|
|
|
|
copy_busybox()
|
2016-01-03 21:09:01 +00:00
|
|
|
dependencies = open("requirements.txt", "r").read().splitlines()
|
2015-03-14 21:40:00 +00:00
|
|
|
|
2013-10-04 23:45:15 +00:00
|
|
|
setup(
|
2013-10-30 21:58:17 +00:00
|
|
|
name="gns3-server",
|
|
|
|
version=__import__("gns3server").__version__,
|
|
|
|
url="http://github.com/GNS3/gns3-server",
|
|
|
|
license="GNU General Public License v3 (GPLv3)",
|
2014-08-09 11:05:31 +00:00
|
|
|
cmdclass={"test": PyTest},
|
2015-01-13 20:39:06 +00:00
|
|
|
description="GNS3 server",
|
2022-03-16 01:22:28 +00:00
|
|
|
long_description=open("README.md", "r").read(),
|
2015-01-14 22:05:33 +00:00
|
|
|
install_requires=dependencies,
|
2013-10-30 21:58:17 +00:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"gns3server = gns3server.main:main",
|
2022-01-19 11:58:36 +00:00
|
|
|
"gns3vmnet = gns3server.utils.vmnet:main"
|
2014-05-28 12:26:20 +00:00
|
|
|
]
|
|
|
|
},
|
2021-07-12 17:04:30 +00:00
|
|
|
packages=find_packages(".", exclude=["docs", "tests*"]),
|
2016-06-29 15:55:28 +00:00
|
|
|
include_package_data=True,
|
2016-10-05 12:54:26 +00:00
|
|
|
zip_safe=False,
|
2013-10-30 21:58:17 +00:00
|
|
|
platforms="any",
|
2022-04-26 12:11:37 +00:00
|
|
|
python_requires='>=3.7.0',
|
2020-05-08 03:04:57 +00:00
|
|
|
setup_requires=["setuptools>=17.1"],
|
2013-10-30 21:58:17 +00:00
|
|
|
classifiers=[
|
2018-09-02 08:32:33 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2013-10-30 21:58:17 +00:00
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Topic :: System :: Networking",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2015-01-14 00:05:26 +00:00
|
|
|
"Natural Language :: English",
|
2018-09-02 08:32:33 +00:00
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
2013-10-30 21:58:17 +00:00
|
|
|
"Programming Language :: Python",
|
2020-06-24 03:10:31 +00:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2018-09-02 08:32:33 +00:00
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-11-11 04:44:31 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-04-06 06:26:46 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-08-15 05:39:48 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-10-30 11:04:54 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2013-10-30 21:58:17 +00:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
2014-05-28 12:26:20 +00:00
|
|
|
],
|
2013-10-04 23:45:15 +00:00
|
|
|
)
|