-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.32 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "point_utils"
version = "0.1.0"
authors = [
{ name="Renke Huang", email="[email protected]" },
]
description = "Compute offset points to a 3-D point cloud."
readme = "README.md"
requires-python = ">=3.9"
# sync with requirements.txt
dependencies = [
'numpy >= 1.20.0',
'scipy',
'matplotlib',
# 'scikit-learn >= 0.24.0',
'pydantic >= 1.10',
'PyYAML >= 6.0',
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["spatial", "3D geometry", "offset"]
[project.urls]
homepage = "https://github.com/RenkeHuang/point_utils"
[project.scripts]
RUN = "scripts.main:main" # Maps the command to the main function in modules/main.py
[tool.setuptools.packages.find]
where = ["."]
[project.optional-dependencies]
# sync with requirements-dev.txt
test = ["pytest >= 6.0", "pytest-cov", "pytest-env"]
[tool.pytest.ini_options]
# --cov-report=term-missing
addopts = "--cov=point_utils"
testpaths = ["tests"]
[tool.pytest.ini_options.env]
PYTHONDONTWRITEBYTECODE = "1"
[tool.coverage.run]
omit = [
"*/__init__.py",
"*/tests/*",
]
# [tool.setuptools.package-data]