forked from kk7ds/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 750 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 750 Bytes
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
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",
],
},
)