initial commit after bringing over cleaned up code and testing some examples
This commit is contained in:
parent
c4858e6e0d
commit
00f4ebf5a9
93 changed files with 15189 additions and 13083 deletions
|
@ -1,28 +1,35 @@
|
|||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
|
||||
import os, glob
|
||||
from distutils.core import setup
|
||||
"""
|
||||
Defines how CORE will be built for installation.
|
||||
"""
|
||||
|
||||
from setuptools 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.")
|
||||
setup(name="core-python",
|
||||
version=COREDPY_VERSION,
|
||||
packages=[
|
||||
"core",
|
||||
"core.addons",
|
||||
"core.api",
|
||||
"core.bsd",
|
||||
"core.emane",
|
||||
"core.misc",
|
||||
"core.netns",
|
||||
"core.phys",
|
||||
"core.services",
|
||||
"core.xen",
|
||||
"core.xml",
|
||||
],
|
||||
install_requires=[
|
||||
"enum34"
|
||||
],
|
||||
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.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue