33 lines
1.2 KiB
Python
Executable File
33 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
def readme():
|
|
with open('README.rst') as file:
|
|
return file.read()
|
|
|
|
setup(name='dmr_utils',
|
|
version='0.1.3',
|
|
description='ETSI DMR (Digital Mobile Radio) Teir II Utilities',
|
|
long_description='Modules to disassemble and assemble DMR packets, including generating and decoding varoius FEC routines',
|
|
classifiers=[
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
|
|
'Programming Language :: Python :: 2.7'
|
|
'Intended Audience :: Developers'
|
|
'Natural Language :: English'
|
|
'Operating System :: OS Independent'
|
|
'Programming Language :: Python :: Implementation :: CPython'
|
|
'Topic :: Communications :: Ham Radio'
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
'Topic :: Utilities'
|
|
],
|
|
keywords='dmr radio digital fec ecc mmdvm ham amateur radio',
|
|
author='Cortney T. Buffington, N0MJS',
|
|
author_email='n0mjs@me.com',
|
|
install_requires=['bitarray'],
|
|
license='GPLv3',
|
|
url='https://github.com/n0mjs710/dmr_utils',
|
|
packages=['dmr_utils'],
|
|
#packages=find_packages()
|
|
)
|