-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "pyhid-usb-relay"
dynamic = ["version"]
description = "A tool for controlling USB HID relays"
authors = [
{name="Joshua Watt", email="[email protected]"},
]
maintainers = [
{name="Joshua Watt", email="[email protected]"},
]
license = {file = "COPYING"}
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
required-python = ">= 3.8"
dependencies = [
"xdg>=5.1.1",
"pyusb>=1.2.1",
"PyYAML>=6.0",
"libusb>=1.0.26b5; sys_platform == 'win32'",
]
[project.optional-dependencies]
dev = [
"flake8",
"black",
"pytest >= 7.4",
]
[project.urls]
Homepage = "https://github.com/JPEWdev/pyhid-usb-relay"
Repository = "https://github.com/JPEWdev/pyhid-usb-relay.git"
Issues = "https://github.com/JPEWdev/pyhid-usb-relay/issues"
[project.scripts]
pyhid-usb-relay = "pyhid_usb_relay.main:main"
[tool.hatch.version]
path = "src/pyhid_usb_relay/version.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"