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",
|
2018-07-06 22:26:33 +01:00
|
|
|
version="5.2",
|
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",
|
|
|
|
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
|
|
|
author="Boeing Research & Technology",
|
2017-12-18 23:50:28 +00:00
|
|
|
author_email="core-dev@nrl.navy.mil",
|
2017-08-17 21:29:19 +01:00
|
|
|
license="GPLv2",
|
|
|
|
long_description="Python scripts and modules for building virtual simulated networks."
|
|
|
|
)
|