2025-05-29 11:39:44 -04:00
|
|
|
from setuptools import setup
|
2022-11-23 15:37:49 -08:00
|
|
|
from setuptools import find_packages
|
2009-03-03 15:09:16 -08:00
|
|
|
|
2022-11-23 15:37:49 -08:00
|
|
|
setup(name='chirp',
|
2022-12-06 21:03:10 -05:00
|
|
|
description='A cross-platform cross-radio programming tool',
|
|
|
|
|
packages=find_packages(include=["chirp*"]),
|
2022-12-06 14:29:15 -05:00
|
|
|
include_package_data=True,
|
2023-02-06 15:17:22 -08:00
|
|
|
version=0,
|
2022-11-23 15:37:49 -08:00
|
|
|
url='https://chirp.danplanet.com',
|
2024-04-10 18:27:41 -07:00
|
|
|
python_requires=">=3.10,<4",
|
2022-12-06 14:29:15 -05:00
|
|
|
install_requires=[
|
2022-12-06 21:03:10 -05:00
|
|
|
'pyserial',
|
2022-12-29 15:03:03 -06:00
|
|
|
'requests',
|
2022-12-16 17:06:48 -08:00
|
|
|
'yattag',
|
2024-05-09 16:20:55 -07:00
|
|
|
'suds',
|
2024-12-05 21:07:28 -08:00
|
|
|
'lark',
|
2022-12-06 14:29:15 -05:00
|
|
|
],
|
2022-12-07 10:02:10 -05:00
|
|
|
extras_require={
|
|
|
|
|
'wx': ['wxPython'],
|
|
|
|
|
},
|
2022-11-23 15:37:49 -08:00
|
|
|
entry_points={
|
2024-05-05 20:15:38 -07:00
|
|
|
'console_scripts': [
|
|
|
|
|
"chirp=chirp.wxui:chirpmain",
|
|
|
|
|
"chirpc=chirp.cli.main:main",
|
|
|
|
|
"experttune=chirp.cli.experttune:main",
|
|
|
|
|
],
|
2022-11-23 15:37:49 -08:00
|
|
|
},
|
2022-12-01 16:16:50 -08:00
|
|
|
)
|