Skip to content

Commit

Permalink
Version 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jemeni11 committed Sep 18, 2024
1 parent b783544 commit 417c9cc
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 51 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[//]: # (- **Fixed** for any bug fixes.)
[//]: # (- **Security** in case of vulnerabilities.)

## [4.1.1] - 2024-09-18

### Changed
- Changed the build system.

## [4.1.0] - 2024-04-17

### Added
Expand Down Expand Up @@ -92,6 +97,7 @@ match the new README format. The content type was updated from `text/markdown` t
- Released FicImageScript


[4.1.1]: https://github.com/Jemeni11/FicImage/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/Jemeni11/FicImage/compare/v4.0.0...v4.1.0
[4.0.0]: https://github.com/Jemeni11/FicImage/compare/v3.0.0...v4.0.0
[3.0.0]: https://github.com/Jemeni11/FicImage/compare/v2.1.0...v3.0.0
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion FicImage/main.py → FicImageScript/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .image import get_image_from_url
from .utils import config_check, load_config_json, default_ficimage_settings

__version__ = "4.1.0"
__version__ = "4.1.1"


def update_epub(path_to_epub, config_file_path, debug):
Expand Down
File renamed without changes.
26 changes: 22 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "FicImageScript"
version = "4.1.0"
version = "4.1.1"
authors = [
{ name="Emmanuel C. Jemeni", email="[email protected]" }
{ name = "Emmanuel C. Jemeni", email = "[email protected]" }
]
description = "FicImage is an application designed to enhance the reading experience of FicHub epubs."
readme = "PYPI_README.rst"
requires-python = ">=3.6"
license = {file = "LICENSE"}
license = { file = "LICENSE" }
keywords = ["fanfiction", "fichub", "ficimage", "image"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -16,6 +16,22 @@ classifiers = [
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
'beautifulsoup4>=4.12.2',
'certifi>=2022.12.7',
'charset-normalizer>=3.1.0',
'EbookLib>=0.18',
'idna>=3.4',
'lxml>=4.9.2',
'Pillow>=9.5.0',
'requests>=2.31.0',
'six>=1.16.0',
'soupsieve>=2.4.1',
'urllib3>=1.26.15'
]

[project.scripts] # Optional
ficimage = "FicImageScript:main"

[project.urls]
"Homepage" = "https://github.com/Jemeni11/FicImage"
Expand All @@ -24,4 +40,6 @@ classifiers = [
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
#requires = ["setuptools>=43.0.0", "wheel"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
46 changes: 0 additions & 46 deletions setup.py

This file was deleted.

0 comments on commit 417c9cc

Please sign in to comment.