Skip to content

Commit

Permalink
bump version 0.1.55 to 0.1.56
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikuniii committed Oct 10, 2023
1 parent 9e0882f commit 94dfc80
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.poetry]
name = "pynimeapi"
version = "0.1.56"
description = "Yet simple API wrapper for GoGoAnime"
authors = ["Yoshkuni Kuniumi <101183804+yoshikuniii@users.noreply.github.com>"]
license = "GNU General Public License v3.0"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
pycryptodome = "^3.19.0"
m3u8 = "^3.6.0"
lxml = "^4.9.3"
yarl = "^1.9.2"
cssselect = "^1.2.0"
certifi = "^2023.7.22"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.1.55'
VERSION = '0.1.56'
DESCRIPTION = 'Yet simple API wrapper for GoGoAnime'
LONG_DESCRIPTION = 'PyNime is a (simple) straightforward Python3 script to scrape GoGoAnime using Python. The project ' \
'is a work in progress, not finished yet. But, the code works well, feel free to take part of the ' \
Expand All @@ -17,7 +17,7 @@
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['beautifulsoup4', 'requests', 'pycryptodome', 'm3u8', 'lxml', 'cssselect', 'yarl'],
install_requires=['beautifulsoup4', 'requests', 'pycryptodome', 'm3u8', 'lxml', 'cssselect', 'yarl', 'certifi'],
keywords=['python', 'downloader', 'anime', 'webscrapping', 'beautifulsoup4', 'gogoanime', 'gogoanime-scraper'],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 94dfc80

Please sign in to comment.