diff options
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7640b73..ae3b93d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,12 +12,15 @@ classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent", ] -license = "MIT" -license-files = ["LICENSE"] +license = { file = "LICENSE" } [project.urls] repository = "https://git.push-f.com/logformat" +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + [tool.setuptools] packages = ["logformat"] |