toydesigner-cgal/pyproject.toml

40 lines
864 B
TOML

[tool.poetry]
name = "toydesigner-cgal"
version = "0.0.1"
description = "python bindings for some geometry algorithms in `cgal` (for [toydesigner](https://gitea.winkinshly.site/songsenand/ToyDesigner) only)"
authors = ["songsenand <songsenand@163.com>"]
license = "GPL"
readme = "README.md"
packages = [{include = "tdcgal"}]
[tool.poetry.dependencies]
python = "^3.11"
pybind11 = "^2.11.1"
loguru = "^0.7.2"
sympy = "^1.12"
[[tool.poetry.source]]
name = "ali"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[build-system]
requires = [
"poetry-core>=1.1.0",
"setuptools>=65.4.1",
"pybind11>=2.11.1"
]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
script = "build.py"
generate-setup-file = false