-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 2.53 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenGeodeWeb-Viewer"
version = "0.0.0"
dynamic = ["dependencies"]
authors = [{ name = "Geode-solutions", email = "team-web@geode-solutions.com" }]
description = "OpenGeodeWeb-Viewer is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer"
"Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/issues"
[project.scripts]
opengeodeweb-viewer = "opengeodeweb_viewer.app:run_server"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"opengeodeweb_viewer.rpc.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.generic.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.points.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.points.attribute.vertex.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.edges.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.edges.attribute.edge.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.edges.attribute.vertex.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.cells.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.cells.attribute.cell.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.cells.attribute.vertex.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polygons.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polygons.attribute.polygon.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polygons.attribute.vertex.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polyhedra.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polyhedra.attribute.polyhedron.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.mesh.polyhedra.attribute.vertex.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.edges.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.points.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.corners.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.lines.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.surfaces.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.blocks.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.viewer.schemas" = ["*.json"]