26 lines
561 B
TOML
26 lines
561 B
TOML
[tool.poetry]
|
|
name = "toydesigner"
|
|
version = "0.1.0"
|
|
description = "立志成为简单有趣的2D、3D辅助设计工具"
|
|
authors = ["songsenand <songsenand@163.com>"]
|
|
license = "Apache License Version 2.0"
|
|
readme = "README.md"
|
|
|
|
[[tool.poetry.source]]
|
|
name = "ali"
|
|
url = "https://mirrors.aliyun.com/pypi/simple/"
|
|
priority = "primary"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
ezdxf = "^1.1.4"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
commitizen = "^3.13.0"
|
|
pytest = "^7.4.4"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|