-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 933 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
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "smart-tree"
version = "1.0.0"
authors = [
{name = "Harry Dobbs", email = "[email protected]"},
]
description = "Neural Network Point Cloud Tree Skeletonization"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
'numpy',
'open3d',
'hydra-core>=1.2.0',
#'click',
#'oauthlib',
'spconv-cu117',
'wandb',
'cmapy',
#'plyfile',
#'torch',
'py_structs',
'torchtyping',
'beartype',
'typeguard==2.11.1'
]
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[project.scripts]
run-smart-tree = "smart_tree.cli:main"
train-smart-tree = "smart_tree.model.train:main"
view-npz = "smart_tree.scripts.view_npz:main"
view-pcd = "smart_tree.scripts.view_pcd:main"
#[project.scripts]