mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
This removes the legacy GTK GUI from the tree. This is not being maintained, doesn't work very well, and I'm tired of accidentally editing files here when I mean to edit wxui/*. When we announce the chirp-next stuff to the users, I don't want packagers to be confused about which version to use, what the required dependencies are, etc.
27 lines
729 B
Python
27 lines
729 B
Python
from distutils.core import setup
|
|
from glob import glob
|
|
from setuptools import find_packages
|
|
|
|
from chirp import CHIRP_VERSION
|
|
|
|
setup(name='chirp',
|
|
description='A cross-platform cross-radio programming tool',
|
|
packages=find_packages(include=["chirp*"]),
|
|
include_package_data=True,
|
|
version=CHIRP_VERSION,
|
|
url='https://chirp.danplanet.com',
|
|
python_requires=">=3.7,<4",
|
|
install_requires=[
|
|
'pyserial',
|
|
'six',
|
|
'future',
|
|
'importlib-resources;python_version<"3.10"',
|
|
'yattag',
|
|
],
|
|
extras_require={
|
|
'wx': ['wxPython'],
|
|
},
|
|
entry_points={
|
|
'console_scripts': ["chirp=chirp.wxui:chirpmain"],
|
|
},
|
|
)
|