-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·31 lines (29 loc) · 1003 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="SimpleSoapy",
version="1.5.1",
description="Simple pythonic wrapper for SoapySDR library",
long_description=open("README.rst").read(),
author="Michal Krenek (Mikos)",
author_email="[email protected]",
url="https://github.com/xmikos/simplesoapy",
license="MIT",
py_modules=["simplesoapy"],
install_requires=[
"numpy",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Communications :: Ham Radio"
]
)