-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 856 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "assembly_mesh_plugin"
version = "0.1.4"
dependencies = [
"cadquery>=2.6.0",
"gmsh",
]
requires-python = ">=3.9"
authors = [
{ name="Jeremy Wright" }
]
maintainers = [
{ name="Jeremy Wright" }
]
description = "CadQuery plugin to create a mesh of an assembly with corresponding data"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["cadquery", "CAD", "engineering", "design"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Repository = "https://github.com/cadquery/assembly-mesh-plugin.git"
"Bug Tracker" = "https://github.com/cadquery/assembly-mesh-plugin/issues"