diff --git a/setup.py b/setup.py index 295b6fb7..fd78c9b0 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,9 @@ README_TEXT = (Path(__file__).parent / "README.md").read_text(encoding="utf-8") +MAINTAINER = "Lewis Tunstall, Tom Aarsen" +MAINTAINER_EMAIL = "lewis@huggingface.co" + INTEGRATIONS_REQUIRE = ["optuna"] REQUIRED_PKGS = ["datasets>=2.3.0", "sentence-transformers>=2.2.1", "evaluate>=0.3.0"] @@ -40,8 +43,8 @@ def combine_requirements(base_keys): description="Efficient few-shot learning with Sentence Transformers", long_description=README_TEXT, long_description_content_type="text/markdown", - author="SetFit", - author_email="lewis@huggingface.co", + maintainer=MAINTAINER, + maintainer_email=MAINTAINER_EMAIL, url="https://github.com/SetFit/setfit", download_url="https://github.com/SetFit/setfit/tags", license="Apache 2.0",