-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "flir-boson-sdk"
description = "FLIR Boson Camera Software Development Kit for Command and Control operations"
version = "0.1.0"
# dynamic = ["version"]
readme = "BosonSDK/SDK_README.txt"
requires-python = ">=3.7"
dependencies = [
"pyserial", "smbus2"
]
authors = [
{name = "FLIR Systems"}
]
license = {file = "BosonSDK/License.txt"}
keywords = ["flir", "boson", "thermal", "camera", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Image Processing",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://oem.flir.com/support/support-center/software/"
[project.scripts]
flir-color-lut = "BosonSDK.flir_color_lut:main"
flir-get-info = "BosonSDK.flir_get_info:main"
# flir-mipi = "BosonSDK.flir_mipi:main"
[tool.setuptools]
packages = ["BosonSDK", "BosonSDK.ClientFiles_Python", "BosonSDK.CommunicationFiles"]
# [tool.setuptools_scm]
# write_to = "BosonSDK/_version.py"