forked from pyrtlsdr/pyrtlsdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (63 loc) · 2.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This file is part of pyrlsdr.
# Copyright (C) 2013 by Roger <https://github.com/roger-/pyrtlsdr>
#
# pyrlsdr is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# pyrlsdr is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with pyrlsdr. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import re
from setuptools import setup, find_packages
PACKAGE_NAME = 'pyrtlsdr'
VERSION = '0.2.9'
#HERE = os.path.abspath(os.path.dirname(__file__))
#README = open(os.path.join(HERE, 'README.md')).read()
def convert_readme():
from m2r import parse_from_file
rst = parse_from_file('README.md')
with open('README.rst', 'w') as f:
f.write(rst)
return rst
def read_rst():
try:
with open('README.rst', 'r') as f:
rst = f.read()
except IOError:
rst = None
return rst
if {'sdist', 'bdist_wheel'} & set(sys.argv):
long_description = convert_readme()
else:
long_description = read_rst()
setup(
name=PACKAGE_NAME,
version=VERSION,
author='roger',
url='https://github.com/roger-/pyrtlsdr',
description='A Python wrapper for librtlsdr (a driver for Realtek RTL2832U based SDR\'s)',
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'],
license='GPLv3',
keywords='radio librtlsdr rtlsdr sdr',
setup_requires=['m2r'],
platforms=['any'],
packages=find_packages(exclude=['tests*']))