import glob

from setuptools import setup

_EXAMPLES_DIR = "share/corens3/examples"

setup(
    name="core-ns3",
    version="@PACKAGE_VERSION@",
    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."
)