-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (27 loc) · 913 Bytes
/
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "e57"
dependencies = [
'pytest',
'numpy',
]
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 = "[email protected]" }
]
requires-python = ">=3.8"
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.urls]
repository = "https://github.com/dancergraham/e57-python"
[tool.maturin]
features = ["pyo3/extension-module"]