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

28 lines
835 B
Python

# Copyright (c)2010-2012 the Boeing Company.
# See the LICENSE file included in this distribution.
import os, glob
from distutils.core import setup
from core.constants import COREDPY_VERSION
setup(name = "core-python",
version = COREDPY_VERSION,
packages = [
"core",
"core.addons",
"core.api",
"core.emane",
"core.misc",
"core.bsd",
"core.netns",
"core.phys",
"core.xen",
"core.services",
],
description = "Python 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 = "BSD",
long_description="Python scripts and modules for building virtual " \
"emulated networks.")