mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
See https://peps.python.org/pep-0632/ This is currently done as a patch in the Debian package.
28 lines
750 B
Python
28 lines
750 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(name='chirp',
|
|
description='A cross-platform cross-radio programming tool',
|
|
packages=find_packages(include=["chirp*"]),
|
|
include_package_data=True,
|
|
version=0,
|
|
url='https://chirp.danplanet.com',
|
|
python_requires=">=3.10,<4",
|
|
install_requires=[
|
|
'pyserial',
|
|
'requests',
|
|
'yattag',
|
|
'suds',
|
|
'lark',
|
|
],
|
|
extras_require={
|
|
'wx': ['wxPython'],
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
"chirp=chirp.wxui:chirpmain",
|
|
"chirpc=chirp.cli.main:main",
|
|
"experttune=chirp.cli.experttune:main",
|
|
],
|
|
},
|
|
)
|