35 lines
736 B
TOML
35 lines
736 B
TOML
[project]
|
|
name = "nhf"
|
|
version = "0.1.0"
|
|
description = "NorCal Hakkero Factory No. 1 Cosplay Designs"
|
|
authors = [{ name = "Leni Aniva", email = "aniva@stanford.edu" }]
|
|
requires-python = ">=3.10,<3.13"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"cadquery==2.5.2",
|
|
"numpy>=2,<3",
|
|
"colorama>=0.4.6,<0.5",
|
|
"multimethod~=1.12",
|
|
"scipy>=1.14.0,<2",
|
|
"typish>=1.9.3,<2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"cq-editor",
|
|
"pyqt5>=5.15.11,<6",
|
|
"logbook>=1.8.0,<2",
|
|
"spyder>=5,<6",
|
|
"pyqtgraph>=0.13.7,<0.14",
|
|
"unittest-parallel>=1.7.4",
|
|
]
|
|
|
|
[tool.uv]
|
|
|
|
[tool.uv.sources]
|
|
cq-editor = { git = "https://github.com/CadQuery/CQ-editor.git" }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|