2016-12-03 16:16:21 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-12-13 23:01:14 -05:00
|
|
|
from setuptools import setup, find_packages
|
2016-12-03 16:16:21 -05:00
|
|
|
|
|
|
|
def readme():
|
|
|
|
with open('README.rst') as file:
|
|
|
|
return file.read()
|
|
|
|
|
2016-12-13 23:01:14 -05:00
|
|
|
setup(name='dmr_utils',
|
2019-03-01 09:32:57 -05:00
|
|
|
version='0.1.21',
|
2017-08-22 09:01:08 -04:00
|
|
|
description='ETSI DMR (Digital Mobile Radio) Tier II Utilities',
|
2017-08-22 09:00:15 -04:00
|
|
|
long_description='Modules to disassemble and assemble DMR packets, including generating and decoding various FEC routines',
|
2016-12-03 16:16:21 -05:00
|
|
|
classifiers=[
|
2018-10-17 15:34:01 -04:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Communications :: Ham Radio',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: Utilities',
|
2016-12-03 16:16:21 -05:00
|
|
|
],
|
|
|
|
keywords='dmr radio digital fec ecc mmdvm ham amateur radio',
|
|
|
|
author='Cortney T. Buffington, N0MJS',
|
|
|
|
author_email='n0mjs@me.com',
|
2018-10-17 17:09:01 -04:00
|
|
|
install_requires=['bitstring>=3.1.5','bitarray>=0.8.3'],
|
2016-12-13 23:01:14 -05:00
|
|
|
license='GPLv3',
|
|
|
|
url='https://github.com/n0mjs710/dmr_utils',
|
2018-10-17 17:09:01 -04:00
|
|
|
#packages=['dmr_utils'],
|
|
|
|
packages=find_packages()
|
2016-12-13 22:34:11 -05:00
|
|
|
)
|