build(pyproject.toml): 添加`ezdxf`、`commitizen`等依赖

BREAKING CHANGE:
This commit is contained in:
songsenand 2024-01-26 23:35:13 +08:00
parent 2a2bce0793
commit f832238900
1 changed files with 24 additions and 0 deletions

24
pyproject.toml Normal file
View File

@ -0,0 +1,24 @@
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"