core-extra/daemon/ns3/setup.py
tgoff0 0ce17e8c52 daemon: Use automake to install python data files.
Includes other small changes.
2015-05-26 17:33:57 +00:00

19 lines
650 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
setup(name = "corens3-python",
version = COREDPY_VERSION,
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.")