-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 863 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 863 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
33
34
35
36
37
38
39
40
41
[build-system]
requires = [
"hatchling >= 1.27",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "r3pcomms"
description = "Local communication with a River 3 Plus over USB HID and/or CDC(ACM)"
dynamic = [
"version",
"urls",
]
readme = "README.md"
license = "MIT"
authors = [
{ name="M. Greyson Christoforo", email="grey@christoforo.net" },
]
dependencies = [
"pyserial",
"hidapi",
]
[project.scripts]
r3pcomms-cli = "r3pcomms.__main__:entrypoint"
[tool.hatch.metadata.hooks.vcs.urls]
homepage = "https://github.com/greyltc/r3pcomms"
source = "https://github.com/greyltc/r3pcomms.git"
source_archive = "https://github.com/greyltc/r3pcomms/archive/{commit_hash}.zip"
[tool.hatch.build.hooks.vcs]
version-file = "src/r3pcomms/_version.py"
[tool.hatch.version]
source = "vcs"
#[tool.black]
#line-length = 999999