From e3fec61eefba80423f1ed873eae2bdab9e6955cb Mon Sep 17 00:00:00 2001 From: jinno Date: Sun, 22 Sep 2024 12:37:32 +0900 Subject: [PATCH] fix: pyproject.toml project name --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ae049a1..cdf597b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -authors = [{name = "Shroominic", email = "contact@shroominic.com"}] +authors = [{name = "nobu007", email = "klvx01@gmail.com"}] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", @@ -35,13 +35,14 @@ name = "codeinterpreterapi" readme = "README.md" requires-python = ">= 3.10, <3.13" version = "0.1.17" +include = ["src/**"] [tool.hatch.build.targets.wheel] -name = "GuiAgentLoopCore" -packages = ["GuiAgentLoopCore"] +name = "codeinterpreterapi" +packages = ["codeinterpreterapi"] [project.urls] -Code = "https://github.com/shroominic/codeinterpreter-api" +Code = "https://github.com/nobu007/codeinterpreter-api" Docs = "https://shroominic.github.io/codeinterpreter-api" [build-system] @@ -56,7 +57,6 @@ dev-dependencies = [ "pytest", "ipython", "pre-commit", - "codeinterpreterapi[all]", "mkdocs-material>=9.4", ] managed = true