-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.17 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
# Package build
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# Package info and dependencies
[project]
name = "mfthree"
description = "Matter and Form - THREE - Library"
readme = "./three/PYPI_README.md"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"]
requires-python = ">=3.10"
dependencies = [
'importlib-metadata; python_version<"3.10"',
'protobuf >= 5.0.0',
'websocket-client >= 1.7.0',
'numpy >= 1.26.4'
]
# URLs
[project.urls]
Homepage = "https://github.com/Matter-and-Form/three-python-library"
Documentation = "https://matter-and-form.github.io/three-python-library/three/scanner.html"
# Package source
[tool.setuptools.package-dir]
three = "three"
"MF" = "three/MF"
# Dynamic input
[tool.setuptools.dynamic]
version = {attr = "three.__version__"}
# Command line accessible scripts
# Usage:
# python3 -m three.examples connection
# python3 -m three.examples projector
# python3 -m three.examples simpleScanner
# python3 -m three.examples task
# python3 -m three.examples turntableCalibration
[project.scripts]
examples = "three.examples:main_cli"