20 lines
484 B
Python
20 lines
484 B
Python
|
import glob
|
||
|
|
||
|
from setuptools import setup
|
||
|
|
||
|
_EXAMPLES_DIR = "share/corens3/examples"
|
||
|
|
||
|
setup(
|
||
|
name="core-ns3",
|
||
|
version="5.5.2",
|
||
|
packages=[
|
||
|
"corens3",
|
||
|
],
|
||
|
data_files=[(_EXAMPLES_DIR, glob.glob("examples/*"))],
|
||
|
description="Python ns-3 components of CORE",
|
||
|
url="https://github.com/coreemu/core",
|
||
|
author="Boeing Research & Technology",
|
||
|
license="GPLv2",
|
||
|
long_description="Python scripts and modules for building virtual simulated networks."
|
||
|
)
|