From 84428e31782c4db7cc4a2242a7effe06925bf049 Mon Sep 17 00:00:00 2001 From: Boyd Nguyen Date: Wed, 27 Mar 2024 15:18:00 +1000 Subject: [PATCH] tidy up package meta --- pyproject.toml | 25 +++++-------------------- setup.cfg | 2 +- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 23 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d22ea1e..cca080a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,22 +1,7 @@ -[tool.poetry] -name = "youscribe" -version = "0.0.1" -description = "" -authors = [ - "Mat Bettinson ", - "Boyd Thai Hoang Nguyen =42", "wheel", "setuptools_scm>=6.2"] +build-backend = "setuptools.build_meta" -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" +[tool.isort] +profile = "black" diff --git a/setup.cfg b/setup.cfg index 4974f75..3519c03 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = youscribe author = Digital Observatory author_email = digitalobservatory@qut.edu.au -description = +description = Library to transcribe YouTube videos using Whisper model long_description = file: README.md long_description_content_type = text/markdown classifiers = diff --git a/setup.py b/setup.py index 34f9fcc..557257b 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ here = pathlib.Path(__file__).parent.resolve() -__version__ = "0.0.1" +__version__ = "0.0.2" # Get the long description from the README file long_description = (here / "README.md").read_text(encoding="utf-8") @@ -15,7 +15,7 @@ author="Digital Observatory", authhor_email="digitalobservatory@qut.edu.au", version=__version__, - description="Library to transcribe YouTube video using Whisper model", + description="Library to transcribe YouTube videos using Whisper model", long_description=long_description, long_description_content_type="text/markdown", classifiers=[