initial import (Boeing r1752, NRL r878)

This commit is contained in:
ahrenholz 2013-08-29 14:21:13 +00:00
commit f8f46d28be
394 changed files with 99738 additions and 0 deletions

28
daemon/ns3/setup.py Normal file
View file

@ -0,0 +1,28 @@
# Copyright (c)2012 the Boeing Company.
# See the LICENSE file included in this directory.
import os, glob
from distutils.core import setup
from corens3.constants import COREDPY_VERSION
# optionally pass CORE_CONF_DIR using environment variable
confdir = os.environ.get('CORE_CONF_DIR')
if confdir is None:
confdir="/etc/core"
setup(name = "corens3-python",
version = COREDPY_VERSION,
packages = [
"corens3",
],
data_files = [
("share/core/examples/corens3",
glob.glob("examples/*.py")),
],
description = "Python ns-3 components of CORE",
url = "http://cs.itd.nrl.navy.mil/work/core/",
author = "Boeing Research & Technology",
author_email = "core-dev@pf.itd.nrl.navy.mil",
license = "GPLv2",
long_description="Python scripts and modules for building virtual " \
"simulated networks.")