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
25 lines (24 loc) · 724 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 724 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
from distutils.core 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.7,<4",
install_requires=[
'pyserial',
'requests',
'six',
'importlib-resources;python_version<"3.10"',
'yattag',
],
extras_require={
'wx': ['wxPython'],
},
entry_points={
'console_scripts': ["chirp=chirp.wxui:chirpmain",
"chirpc=chirp.cli.main:main"],
},
)