mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
28 lines
751 B
Python
28 lines
751 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',
|
|
'requests',
|
|
'six',
|
|
'future',
|
|
'importlib-resources;python_version<"3.10"',
|
|
'yattag',
|
|
],
|
|
extras_require={
|
|
'wx': ['wxPython'],
|
|
},
|
|
entry_points={
|
|
'console_scripts': ["chirp=chirp.wxui:chirpmain"],
|
|
},
|
|
)
|