2017-04-25 16:45:34 +01:00
|
|
|
"""
|
|
|
|
Defines how CORE will be built for installation.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(name="core-python",
|
2017-08-17 23:25:12 +01:00
|
|
|
version="5.0",
|
2017-04-25 16:45:34 +01:00
|
|
|
packages=[
|
|
|
|
"core",
|
|
|
|
"core.addons",
|
|
|
|
"core.api",
|
|
|
|
"core.bsd",
|
|
|
|
"core.emane",
|
|
|
|
"core.misc",
|
|
|
|
"core.netns",
|
|
|
|
"core.phys",
|
|
|
|
"core.services",
|
|
|
|
"core.xen",
|
|
|
|
"core.xml",
|
|
|
|
],
|
|
|
|
install_requires=[
|
2017-08-08 17:17:09 +01:00
|
|
|
"enum34",
|
2017-08-07 19:58:51 +01:00
|
|
|
"logzero"
|
2017-04-25 16:45:34 +01:00
|
|
|
],
|
2017-07-25 18:16:18 +01:00
|
|
|
setup_requires=[
|
|
|
|
"pytest-runner"
|
|
|
|
],
|
|
|
|
tests_require=[
|
|
|
|
"pytest",
|
2017-07-27 00:52:17 +01:00
|
|
|
"pytest-cov",
|
|
|
|
"mock"
|
2017-07-25 18:16:18 +01:00
|
|
|
],
|
2017-04-25 16:45:34 +01:00
|
|
|
description="Python components of CORE",
|
|
|
|
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
|
|
|
author="Boeing Research & Technology",
|
|
|
|
author_email="core-dev@pf.itd.nrl.navy.mil",
|
|
|
|
license="BSD",
|
|
|
|
long_description="Python scripts and modules for building virtual emulated networks.")
|