2013-08-29 15:21:13 +01:00
|
|
|
# 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
|
|
|
|
|
|
|
|
setup(name = "corens3-python",
|
|
|
|
version = COREDPY_VERSION,
|
|
|
|
packages = [
|
|
|
|
"corens3",
|
|
|
|
],
|
|
|
|
description = "Python ns-3 components of CORE",
|
2013-12-04 21:45:42 +00:00
|
|
|
url = "http://www.nrl.navy.mil/itd/ncs/products/core",
|
2013-08-29 15:21:13 +01:00
|
|
|
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.")
|