forked from kk7ds/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 811 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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",
"chirpc=chirp.cli.main:main"],
},
)