-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
#***************************************************************************
#* Copyright (C) 2019-2020 by Andreas Langhoff *
#* <andreas.langhoff@frm2.tum.de> *
#* This program is free software; you can redistribute it and/or modify *
#* it under the terms of the GNU General Public License as published by *
#* the Free Software Foundation; *
# **************************************************************************
from os import listdir, path
from setuptools import find_packages, setup
import quangoplus.version
uidir = path.join(path.dirname(__file__), 'quangoplus', 'ui')
uis = [path.join('ui', entry) for entry in listdir(uidir)]
setup(
name='quangoplus',
version=quangoplus.version.get_version(),
packages=find_packages(),
scripts=['bin/quango+'],
install_requires=["quango"],
package_data={"quangoplus": ['RELEASE-VERSION'] +uis},
author='Andreas Langhoff',
author_email='andreas.langhoff@frm2.tum.de',
description='Simple remote front end for neutron detector Histogram display' \
'(source can be listmode replay or live measurement)',
classifiers=[
'License :: OSI Approved :: GPL License',
],
python_requires='>=3.6',
)