From 4382d9dab7c79de98df00854986997afd51856b2 Mon Sep 17 00:00:00 2001 From: songsenand Date: Fri, 16 Feb 2024 07:27:45 +0800 Subject: [PATCH] =?UTF-8?q?build(pyproject.toml):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=B8=80=E4=BA=9B=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1527de8..11fcb0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,11 +5,13 @@ description = "python bindings for some geometry algorithms in `cgal` (for [toyd authors = ["songsenand "] license = "GPL" readme = "README.md" -packages = [{include = "toydesigner_cgal"}] +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" @@ -21,6 +23,18 @@ priority = "primary" name = "PyPI" priority = "primary" + +[tool.poetry.group.dev.dependencies] +pytest = "^8.0.0" + [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" + +[tool.poetry.build] +script = "build.py" +generate-setup-file = false \ No newline at end of file