-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.62 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
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "infiray-lrf"
authors = [
{ name="o-murphy", email="[email protected]" },
]
description = "Command sender for the InfiRay LR2000 / LR3000 Long Range Finder"
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"pyserial", "infiray", "iray", "lrf", "serial",
"long range finder", "python", "python3"
]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = ['pyserial', 'construct']
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/o-murphy/infiray-lrf"
"Bug Reports" = "https://github.com/o-murphy/infiray-lrf/issues"
#"Funding" = "https://donate.pypi.org"
#"Say Thanks!" = ""
"Source" = "https://github.com/o-murphy/infiray-lrf"
[tool.setuptools]
py-modules = ["infiray_lrf"]
[tool.setuptools.packages.find]
where = ["."]
include = ["infiray_lrf*"]
[tool.setuptools.dynamic]
version = {attr = "infiray_lrf.__version__"}
[project.optional-dependencies]
dev = ['build']
[project.scripts]
infiray-lrf = "infiray_lrf.sender:main"