Skip to content

Commit

Permalink
tidy up package meta
Browse files Browse the repository at this point in the history
  • Loading branch information
boyd-nguyen committed Mar 27, 2024
1 parent f18ee2d commit 84428e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 23 deletions.
25 changes: 5 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
[tool.poetry]
name = "youscribe"
version = "0.0.1"
description = ""
authors = [
"Mat Bettinson <[email protected]>",
"Boyd Thai Hoang Nguyen <[email protected]",
]
readme = "README.md"


[tool.poetry.dependencies]
python = "^3.10"
faster-whisper = "^0.10.0"
beautifulsoup4 = "^4.12.2"
requests = "^2.31.0"
yt-dlp = "^2023.11.16"
[build-system]
requires = ["setuptools>=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"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = youscribe
author = Digital Observatory
author_email = [email protected]
description =
description = Library to transcribe YouTube videos using Whisper model
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -15,7 +15,7 @@
author="Digital Observatory",
authhor_email="[email protected]",
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=[
Expand Down

0 comments on commit 84428e3

Please sign in to comment.