-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
executable file
·40 lines (38 loc) · 1.25 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
from soapypower.version import __version__
setup(
name='soapy_power',
version=__version__,
description='Obtain power spectrum from SoapySDR devices (RTL-SDR, Airspy, SDRplay, HackRF, bladeRF, USRP, LimeSDR, etc.)',
long_description=open('README.rst').read(),
author='Michal Krenek (Mikos)',
author_email='[email protected]',
url='https://github.com/xmikos/soapy_power',
license='MIT',
packages=['soapypower'],
entry_points={
'console_scripts': [
'soapy_power=soapypower.__main__:main'
],
},
install_requires=[
'numpy',
'simplesoapy>=1.5.0',
'simplespectral'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Communications :: Ham Radio',
'Topic :: Utilities'
]
)