Commit 1bc177ce authored by Dimitris Lampridis's avatar Dimitris Lampridis

Merge branch 'feature/installation' into proposed_master

parents 4e14376d 5a146ff9
......@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
- Python installation of wrtd-tool (via setup-tools)
## [1.0.0] - 2019-10-01
### Added
......
from setuptools import setup, find_packages
setup(
name="wrtd-tool",
version="1.0",
packages=find_packages(),
description='WRTD Tool',
author="Dimitris Lampridis",
author_email="dimitris.lampridis@cern.ch",
maintainer="Dimitris Lampridis",
maintainer_email="dimitris.lampridis@cern.ch",
url='http://www.ohwr.org/projects/wrtd',
project_urls={
"Documentation": "https://wrtd.readthedocs.io",
"Forum" : "https://forums.ohwr.org/c/wrtd",
},
license='LGPLv3',
entry_points = {
'console_scripts': [
"wrtd-tool = wrtd_tool:main"
]
}
)
......@@ -306,6 +306,7 @@ def time_interval_help():
to the value to set it explicitly to nano, micro, milli or full seconds"""
def main():
signal.signal(signal.SIGINT, signal_handler)
parser = argparse.ArgumentParser(description='WRTD Node configuration tool')
......@@ -489,5 +490,4 @@ def main():
args.func(args)
if __name__ == "__main__":
signal.signal(signal.SIGINT, signal_handler)
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment