-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (106 loc) · 2.84 KB
/
Copy pathpyproject.toml
File metadata and controls
127 lines (106 loc) · 2.84 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vedo"
version = "2026.6.2.dev08"
description = "A python module for scientific visualization, analysis of 3D objects and point clouds."
authors = [
{name = "Marco Musy", email = "mmusy@elisava.net"}
]
maintainers = [
{name = "Marco Musy", email = "mmusy@elisava.net"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["vtk", "numpy", "3d", "visualization", "mesh", "volume", "point-cloud"]
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
dependencies = [
"vtk",
"numpy",
"typing-extensions",
"Pygments",
"matplotlib",
"rich",
]
[project.optional-dependencies]
all = [
"scipy"
]
trame = [
"trame",
"trame-vtk",
"trame-vuetify",
]
[project.urls]
Homepage = "https://github.com/marcomusy/vedo"
Documentation = "https://vedo.embl.es"
Repository = "https://github.com/marcomusy/vedo"
Changelog = "https://github.com/marcomusy/vedo/blob/master/docs/changes.md"
[tool.setuptools]
py-modules = ["cli_entry"]
packages = [
"vedo",
"vedo.core",
"vedo.applications",
"vedo.addons",
"vedo.external",
"vedo.file_io",
"vedo.grids",
"vedo.mesh",
"vedo.plotter",
"vedo.pointcloud",
"vedo.pyplot",
"vedo.shapes",
"vedo.visual",
"vedo.volume",
"vedo.examples.basic",
"vedo.examples.advanced",
"vedo.examples.pyplot",
"vedo.examples.animation",
"vedo.examples.volumetric",
"vedo.examples.extras"
]
include-package-data = true
license-files = ["LICENSE", "FONT.LICENSE"]
[tool.setuptools.package-data]
vedo = [
"*",
"fonts/*",
]
[tool.setuptools.package-dir]
vedo = "vedo"
"vedo.examples.basic" = "examples/basic"
"vedo.examples.advanced" = "examples/advanced"
"vedo.examples.pyplot" = "examples/pyplot"
"vedo.examples.animation" = "examples/animation"
"vedo.examples.volumetric" = "examples/volumetric"
"vedo.examples.extras" = "examples/extras"
[project.scripts]
vedo = "cli_entry:main"
[tool.ruff.lint]
ignore = ["F401", "E402", "E501", "E701"]
[tool.pytest.ini_options]
addopts = [
"-ra",
"--strict-markers",
"--ignore=tests/issues",
"--ignore=tests/snippets",
]
testpaths = ["tests/common"]
markers = [
"optional_dependency: requires an optional runtime dependency",
"rendering: exercises rendering or Plotter plumbing",
]