-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 727 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 727 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
29
30
31
32
[tool.poetry]
name = "Riden"
version = "1.2.0"
description = "A python library for Riden RD power supplies"
license = "MIT"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
homepage = "https://github.com/ShayBox/Riden"
repository = "https://github.com/ShayBox/Riden.git"
packages = [
{include = "riden"},
{include = "riden/py.typed"},
]
[tool.poetry.dependencies]
click = "^8.0.3"
modbus_tk = "^1.1.2"
pyserial = "^3.5"
python = ">=3.7,<4.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
riden = "riden.main:main"
riden-dump-regs = "riden.main:dump_regs"
[tool.black]
line-length = 80