29 lines
855 B
TOML
29 lines
855 B
TOML
--- pyproject.toml.orig 1970-01-01 00:00:00 UTC
|
|
+++ pyproject.toml
|
|
@@ -2,7 +2,7 @@ keywords = ["driver", "asyncio", "mysql"]
|
|
authors = [{ name = "long2ice", email = "long2ice@gmail.com" }]
|
|
description = "A fast asyncio MySQL driver"
|
|
keywords = ["driver", "asyncio", "mysql"]
|
|
-license = "Apache-2.0"
|
|
+license = { text = "Apache-2.0" }
|
|
name = "asyncmy"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
@@ -15,7 +15,6 @@ repository = "https://github.com/long2ice/asyncmy.git"
|
|
repository = "https://github.com/long2ice/asyncmy.git"
|
|
|
|
[tool.poetry]
|
|
-include = ["CHANGELOG.md", "LICENSE", "README.md"]
|
|
packages = [
|
|
{ include = "asyncmy" },
|
|
]
|
|
@@ -41,7 +40,7 @@ generate-setup-file = true
|
|
|
|
[tool.poetry.build]
|
|
generate-setup-file = true
|
|
-script = "build.py"
|
|
+script = "build_cython.py"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|