initial import (Boeing r1752, NRL r878)
This commit is contained in:
commit
f8f46d28be
394 changed files with 99738 additions and 0 deletions
28
daemon/ns3/setup.py
Normal file
28
daemon/ns3/setup.py
Normal 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.")
|
Loading…
Add table
Add a link
Reference in a new issue