[app] add package related files

This commit is contained in:
2021-01-09 12:58:40 +01:00
parent f3b13999e4
commit 15c0c67bba
5 changed files with 133 additions and 0 deletions

20
nixview/info.json Normal file
View File

@@ -0,0 +1,20 @@
{
"NAME": "NixView",
"VERSION": "0.1",
"DESCRIPTION": "Viewer for NIX data files",
"AUTHOR": "Jan Grewe, Lorand Madai-Tahy, Alexander Ott, Christian Kellner",
"COPYRIGHT": "(c) 2020, Neuroethology lab, Uni Tuebingen",
"CONTACT": "jan.grewe@g-node.org",
"HOMEPAGE": "https://github.com/bendalab/nixview-python",
"CLASSIFIERS": [
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License"
]
}

14
nixview/info.py Normal file
View File

@@ -0,0 +1,14 @@
import json
import os
_HERE = os.path.dirname(__file__)
with open(os.path.join(_HERE, "info.json")) as infofile:
_INFODICT = json.load(infofile)
VERSION = _INFODICT["VERSION"]
AUTHOR = _INFODICT["AUTHOR"]
COPYRIGHT = _INFODICT["COPYRIGHT"]
CONTACT = _INFODICT["CONTACT"]
HOMEPAGE = _INFODICT["HOMEPAGE"]
CLASSIFIERS = _INFODICT["CLASSIFIERS"]