qspectrumanalyzer/setup.py

33 lines
1.4 KiB
Python
Raw Normal View History

2015-03-03 07:50:46 +08:00
#!/usr/bin/env python
from distutils.core import setup
from qspectrumanalyzer.version import __version__
setup(name="QSpectrumAnalyzer",
version=__version__,
description="Spectrum analyzer for RTL-SDR (GUI for rtl_power based on PyQtGraph)",
author="Michal Krenek (Mikos)",
author_email="m.krenek@gmail.com",
url="https://github.com/xmikos/qspectrumanalyzer",
license="GNU GPLv3",
packages=["qspectrumanalyzer"],
data_files=[("share/applications", ["qspectrumanalyzer.desktop"]),
("share/pixmaps", ["qspectrumanalyzer.png"])],
scripts=["scripts/qspectrumanalyzer"],
requires=["PyQt4", "pyqtgraph"],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Ham Radio',
'Topic :: Scientific/Engineering :: Visualization'
])