build(pyproject.toml): 添加一些依赖
This commit is contained in:
parent
0674af1e95
commit
4382d9dab7
|
|
@ -5,11 +5,13 @@ description = "python bindings for some geometry algorithms in `cgal` (for [toyd
|
||||||
authors = ["songsenand <songsenand@163.com>"]
|
authors = ["songsenand <songsenand@163.com>"]
|
||||||
license = "GPL"
|
license = "GPL"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
packages = [{include = "toydesigner_cgal"}]
|
packages = [{include = "tdcgal"}]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
pybind11 = "^2.11.1"
|
pybind11 = "^2.11.1"
|
||||||
|
loguru = "^0.7.2"
|
||||||
|
sympy = "^1.12"
|
||||||
|
|
||||||
[[tool.poetry.source]]
|
[[tool.poetry.source]]
|
||||||
name = "ali"
|
name = "ali"
|
||||||
|
|
@ -21,6 +23,18 @@ priority = "primary"
|
||||||
name = "PyPI"
|
name = "PyPI"
|
||||||
priority = "primary"
|
priority = "primary"
|
||||||
|
|
||||||
|
|
||||||
|
[tool.poetry.group.dev.dependencies]
|
||||||
|
pytest = "^8.0.0"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = [
|
||||||
|
"poetry-core>=1.1.0",
|
||||||
|
"setuptools>=65.4.1",
|
||||||
|
"pybind11>=2.11.1"
|
||||||
|
]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
|
[tool.poetry.build]
|
||||||
|
script = "build.py"
|
||||||
|
generate-setup-file = false
|
||||||
Loading…
Reference in New Issue