1#!/usr/bin/env python
2
3from setuptools import setup
4
5setup(
6    name="SimpleSoapy",
7    version="1.5.1",
8    description="Simple pythonic wrapper for SoapySDR library",
9    long_description=open("README.rst").read(),
10    author="Michal Krenek (Mikos)",
11    author_email="m.krenek@gmail.com",
12    url="https://github.com/xmikos/simplesoapy",
13    license="MIT",
14    py_modules=["simplesoapy"],
15    install_requires=[
16        "numpy",
17    ],
18    classifiers=[
19        "Development Status :: 4 - Beta",
20        "Intended Audience :: Developers",
21        "Intended Audience :: Science/Research",
22        "Intended Audience :: Telecommunications Industry",
23        "License :: OSI Approved :: MIT License",
24        "Natural Language :: English",
25        "Operating System :: OS Independent",
26        "Programming Language :: Python :: 3",
27        "Topic :: Software Development :: Libraries :: Python Modules",
28        "Topic :: Scientific/Engineering",
29        "Topic :: Communications :: Ham Radio"
30    ]
31)
32