forked from siyka-au/pycom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.08 KB
/
pyproject.toml
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
30
31
32
33
34
35
36
[project]
name = "iu2frl-civ"
authors = [
{ name="Luca Bennati", email="[email protected]" }
]
description = "A small library to communicate with ICOM devices using CI-V protocol"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["icom", "ci-v", "transceivers", "communication"]
requires-python = ">=3.8"
dependencies = [
"pyserial >= 3.5"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
version = "v0.0.0"
[project.urls]
Homepage = "https://github.com/iu2frl/iu2frl_civ"
Source = "https://github.com/iu2frl/iu2frl_civ"
Issues = "https://github.com/iu2frl/iu2frl_civ/issues"
[build-system]
requires = ["setuptools", "pyserial>=3.5", "wheel"]
build-backend = "setuptools.build_meta"
# Define entry points for devices
[project.entry-points."iu2frl_civ.devices"]
generic = "iu2frl_civ.devices.generic"
ic706_mkii = "iu2frl_civ.devices.ic706_mkii"
ic7300 = "iu2frl_civ.devices.ic7300"