Created
August 10, 2020 05:34
-
-
Save mdgoldberg/96a9955c8c823f2127dbc471a954b898 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[build-system] | |
requires = [ | |
"poetry-core>=1.0.0a9", | |
"Cython~=0.29.6", | |
] | |
build-backend = "poetry.core.masonry.api" | |
[tool.poetry] | |
name = "poetry-cython-example" | |
version = "0.1.0" | |
description = "" | |
authors = [] | |
packages = [{ include = "poetry_cython_example" }] | |
include = [{ path = "poetry_cython_example/**/*.so", format = "wheel" }] | |
[tool.poetry.build] | |
generate-setup-file = false | |
script = "build.py" | |
[tool.poetry.dependencies] | |
python = "~3.6.1" | |
[tool.poetry.dev-dependencies] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment