2017-08-17 13:29:19 -07:00
|
|
|
from setuptools import setup
|
2013-08-29 14:21:13 +00:00
|
|
|
|
2017-08-17 13:29:19 -07:00
|
|
|
setup(
|
2017-12-19 09:43:19 -08:00
|
|
|
name="core-ns3",
|
2017-08-17 15:25:12 -07:00
|
|
|
version="5.0",
|
2017-08-17 13:29:19 -07:00
|
|
|
packages=[
|
2013-08-29 14:21:13 +00:00
|
|
|
"corens3",
|
2017-08-17 13:29:19 -07: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 15:50:28 -08:00
|
|
|
author_email="core-dev@nrl.navy.mil",
|
2017-08-17 13:29:19 -07:00
|
|
|
license="GPLv2",
|
|
|
|
long_description="Python scripts and modules for building virtual simulated networks."
|
|
|
|
)
|