-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (42 loc) · 1.32 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "FicImageScript"
version = "4.1.1"
authors = [
{ 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" }
keywords = ["fanfiction", "fichub", "ficimage", "image"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"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:main"
[project.urls]
"Homepage" = "https://github.com/Jemeni11/FicImage"
"Bug Tracker" = "https://github.com/Jemeni11/FicImage/issues"
[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"]
build-backend = "setuptools.build_meta"