We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16592ff commit aac60ccCopy full SHA for aac60cc
2 files changed
.gitignore
@@ -8,8 +8,3 @@ __pycache__/
8
.poetry/
9
dist/
10
wheelhouse/
11
-*.dll
12
-cgal_alpha_wrapping/*.dll
13
-*.pyd
14
-*.so
15
-*.dylib
pyproject.toml
@@ -20,9 +20,15 @@ build-backend = "poetry.core.masonry.api"
20
21
[tool.poetry]
22
name = "cgal-alpha-wrapping"
23
-
+version = "1.0.2"
24
description = ""
25
authors = ["sth-v <sthv.developer@gmail.com>"]
26
+packages = [{include = "cgal_alpha_wrapping"}]
27
+include = [
28
+ {path = "cgal_alpha_wrapping/*.pyd", format = "wheel"},
29
+ {path = "cgal_alpha_wrapping/*.so", format = "wheel"},
30
+ {path = "cgal_alpha_wrapping/*.dll", format = "wheel"}
31
+]
32
33
34
[tool.poetry.build]
0 commit comments