-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1016 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 1016 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
[build-system]
requires = ["maturin>=1.13,<2.0"]
build-backend = "maturin"
[project]
name = "e57"
version = "0.2.1a1"
dependencies = [
'numpy>=2,<3',
]
description = "Read e57 files to Python. E57 is a compact, non-proprietary point cloud format that's defined by the ASTM E2807 standard. This format is widely adopted by 3D design applications."
authors = [
{ name = "Graham Knapp", email = "graham.knapp@gmail.com" }
]
requires-python = ">=3.10"
keywords = ["pointcloud", "e57", "lidar"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: File Formats",
]
[project.optional-dependencies]
test = [
'pytest>=9,<10',
'pytest-cov>=5,<7',
]
[project.urls]
repository = "https://github.com/dancergraham/e57-python"
[tool.maturin]
features = ["pyo3/extension-module"]