-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.39 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
import os
from os import path
from setuptools import setup, find_packages
PACKAGE_NAME = 'bladerfsdraio'
VERSION = '0.9'
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# Get the long description from the README file
with open(path.join(BASE_DIR, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=PACKAGE_NAME,
version=VERSION,
author='Christoph Schmied',
url='https://github.com/pyrtlsdr/pyrtlsdr',
python_requires='>=3',
description='An asynchronous Python wrapper based on the official bladerf python library from Nuand',
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities'],
license='MIT',
keywords='bladerf sdr cffi radio libbladerf asyncio',
platforms=['any'],
install_requires=['cffi', 'bladerf', 'humanize', 'numpy'],
packages=find_packages(exclude=['tests*']))