updated version to 5.2.1, updates to make version bumps easier, and updated changelog
This commit is contained in:
parent
9b1141a135
commit
51217e509b
8 changed files with 32 additions and 41 deletions
44
netns/setup.py.in
Normal file
44
netns/setup.py.in
Normal file
|
@ -0,0 +1,44 @@
|
|||
"""
|
||||
Defines how CORE netns will be build for installation.
|
||||
"""
|
||||
|
||||
from setuptools import setup, Extension
|
||||
|
||||
|
||||
netns = Extension(
|
||||
"netns",
|
||||
sources=[
|
||||
"netnsmodule.c",
|
||||
"netns.c"
|
||||
]
|
||||
)
|
||||
|
||||
vcmd = Extension(
|
||||
"vcmd",
|
||||
sources=[
|
||||
"vcmdmodule.c",
|
||||
"vnode_client.c",
|
||||
"vnode_chnl.c",
|
||||
"vnode_io.c",
|
||||
"vnode_msg.c",
|
||||
"vnode_cmd.c",
|
||||
],
|
||||
library_dirs=["build/lib"],
|
||||
libraries=["ev"]
|
||||
)
|
||||
|
||||
setup(
|
||||
name="core-netns",
|
||||
version="@PACKAGE_VERSION@",
|
||||
description="Extension modules to support virtual nodes using Linux network namespaces",
|
||||
scripts=["vcmd", "vnoded", "netns"],
|
||||
ext_modules=[
|
||||
netns,
|
||||
vcmd
|
||||
],
|
||||
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
||||
author="Boeing Research & Technology",
|
||||
author_email="core-dev@nrl.navy.mil",
|
||||
license="BSD",
|
||||
long_description="Extension modules and utilities to support virtual nodes using Linux network namespaces",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue