added initial fpm commands for building packages and minor updates to support

This commit is contained in:
Blake J. Harnden 2017-12-21 16:19:12 -08:00
parent 58c6d03bc4
commit 59e6b6630a
8 changed files with 87 additions and 55 deletions

View file

@ -22,13 +22,29 @@ setup(
],
install_requires=[
"enum34",
"logzero"
#"logzero",
],
tests_require=[
"pytest",
"pytest-runner"
"pytest-runner",
"pytest-cov",
"mock"
"mock",
],
data_files=[
("/etc/core", [
"data/core.conf",
"data/xen.conf",
]),
("/etc/init.d", [
"../scripts/core-daemon",
]),
],
scripts=[
"sbin/core-cleanup",
"sbin/core-daemon",
"sbin/core-manage",
"sbin/coresendmsg",
"sbin/core-xen-cleanup",
],
description="Python components of CORE",
url="http://www.nrl.navy.mil/itd/ncs/products/core",