28 lines
934 B
Python
28 lines
934 B
Python
# 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.")
|