From d4e18724b17ff0d576b4997c52f49de6db181c27 Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Fri, 24 Nov 2023 15:06:42 +0800 Subject: [PATCH] fix: remove parts from pyproject.toml to fix pip install issue, revert: https://github.com/casdoor/casdoor-python-sdk/commit/32eb294b7b438b66badc73a4ba7640c10efef85b --- pyproject.toml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1fa15db..c6b3b75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,30 +1,3 @@ -[project] -name = "casdoor" -version = "1.17.0" -authors = [{name = "Casdoor", email = "admin@casdoor.org"}] -description = "Python SDK built for Casdoor" -readme = "README.md" -license = { file = "LICENSE" } -keywords = ["Casdoor"] -classifiers = [ - "Intended Audience :: Developers", - "License :: OSI Approved :: Apache Software License", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" -] - -[project.urls] -"Home" = "https://github.com/casdoor/casdoor-python-sdk" - -[project.scripts] -test = "tests" - [build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta"