2018-03-13 23:20:50 +00:00
|
|
|
import glob
|
|
|
|
|
2017-08-17 21:29:19 +01:00
|
|
|
from setuptools import setup
|
2013-08-29 15:21:13 +01:00
|
|
|
|
2018-03-13 23:20:50 +00:00
|
|
|
_EXAMPLES_DIR = "share/corens3/examples"
|
|
|
|
|
2017-08-17 21:29:19 +01:00
|
|
|
setup(
|
2017-12-19 17:43:19 +00:00
|
|
|
name="core-ns3",
|
2019-03-25 17:44:47 +00:00
|
|
|
version="@PACKAGE_VERSION@",
|
2017-08-17 21:29:19 +01:00
|
|
|
packages=[
|
2013-08-29 15:21:13 +01:00
|
|
|
"corens3",
|
2017-08-17 21:29:19 +01:00
|
|
|
],
|
2018-03-13 23:20:50 +00:00
|
|
|
data_files=[(_EXAMPLES_DIR, glob.glob("examples/*"))],
|
2017-08-17 21:29:19 +01:00
|
|
|
description="Python ns-3 components of CORE",
|
2019-03-31 05:19:00 +01:00
|
|
|
url="https://github.com/coreemu/core",
|
2017-08-17 21:29:19 +01:00
|
|
|
author="Boeing Research & Technology",
|
|
|
|
license="GPLv2",
|
|
|
|
long_description="Python scripts and modules for building virtual simulated networks."
|
|
|
|
)
|