Skip to content

Commit 417c9cc

Browse files
committed
Version 4.1.1
1 parent b783544 commit 417c9cc

File tree

7 files changed

+29
-51
lines changed

7 files changed

+29
-51
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
[//]: # (- **Fixed** for any bug fixes.)
1414
[//]: # (- **Security** in case of vulnerabilities.)
1515

16+
## [4.1.1] - 2024-09-18
17+
18+
### Changed
19+
- Changed the build system.
20+
1621
## [4.1.0] - 2024-04-17
1722

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

9499

100+
[4.1.1]: https://github.com/Jemeni11/FicImage/compare/v4.1.0...v4.1.1
95101
[4.1.0]: https://github.com/Jemeni11/FicImage/compare/v4.0.0...v4.1.0
96102
[4.0.0]: https://github.com/Jemeni11/FicImage/compare/v3.0.0...v4.0.0
97103
[3.0.0]: https://github.com/Jemeni11/FicImage/compare/v2.1.0...v3.0.0
File renamed without changes.
File renamed without changes.

FicImage/main.py renamed to FicImageScript/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .image import get_image_from_url
88
from .utils import config_check, load_config_json, default_ficimage_settings
99

10-
__version__ = "4.1.0"
10+
__version__ = "4.1.1"
1111

1212

1313
def update_epub(path_to_epub, config_file_path, debug):
File renamed without changes.

pyproject.toml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "FicImageScript"
3-
version = "4.1.0"
3+
version = "4.1.1"
44
authors = [
5-
{ name="Emmanuel C. Jemeni", email="[email protected]" }
5+
{ name = "Emmanuel C. Jemeni", email = "[email protected]" }
66
]
77
description = "FicImage is an application designed to enhance the reading experience of FicHub epubs."
88
readme = "PYPI_README.rst"
99
requires-python = ">=3.6"
10-
license = {file = "LICENSE"}
10+
license = { file = "LICENSE" }
1111
keywords = ["fanfiction", "fichub", "ficimage", "image"]
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",
@@ -16,6 +16,22 @@ classifiers = [
1616
"Operating System :: OS Independent",
1717
"Topic :: Internet :: WWW/HTTP",
1818
]
19+
dependencies = [
20+
'beautifulsoup4>=4.12.2',
21+
'certifi>=2022.12.7',
22+
'charset-normalizer>=3.1.0',
23+
'EbookLib>=0.18',
24+
'idna>=3.4',
25+
'lxml>=4.9.2',
26+
'Pillow>=9.5.0',
27+
'requests>=2.31.0',
28+
'six>=1.16.0',
29+
'soupsieve>=2.4.1',
30+
'urllib3>=1.26.15'
31+
]
32+
33+
[project.scripts] # Optional
34+
ficimage = "FicImageScript:main"
1935

2036
[project.urls]
2137
"Homepage" = "https://github.com/Jemeni11/FicImage"
@@ -24,4 +40,6 @@ classifiers = [
2440
[build-system]
2541
# These are the assumed default build requirements from pip:
2642
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
27-
requires = ["setuptools>=43.0.0", "wheel"]
43+
#requires = ["setuptools>=43.0.0", "wheel"]
44+
requires = ["setuptools"]
45+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)