initial pass on converting corens3 to use latest code and small cleanup

This commit is contained in:
Blake J. Harnden 2017-08-17 13:29:19 -07:00
parent fc7fb0f76c
commit f282f4ea15
7 changed files with 457 additions and 476 deletions

View file

@ -1,19 +1,15 @@
# Copyright (c)2012 the Boeing Company.
# See the LICENSE file included in this directory.
from setuptools import setup
import os, glob
from distutils.core import setup
from corens3.constants import COREDPY_VERSION
setup(name = "corens3-python",
version = COREDPY_VERSION,
packages = [
setup(
name="corens3-python",
version="5.0.0",
packages=[
"corens3",
],
description = "Python ns-3 components of CORE",
url = "http://www.nrl.navy.mil/itd/ncs/products/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.")
],
description="Python ns-3 components of CORE",
url="http://www.nrl.navy.mil/itd/ncs/products/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."
)