2023-09-13 21:18:28 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "fwa"
|
2023-09-13 21:37:21 +02:00
|
|
|
version = "0.2.0"
|
2023-09-13 21:18:28 +02:00
|
|
|
description = "Firefox Web Apps"
|
|
|
|
authors = ["Ceda EI <ceda_ei@webionite.com>"]
|
2023-09-13 21:29:18 +02:00
|
|
|
license = "GPL-3.0-only"
|
2023-09-13 21:18:28 +02:00
|
|
|
readme = "README.md"
|
2023-09-13 21:29:18 +02:00
|
|
|
repository = "https://gitlab.com/ceda_ei/firefox-web-apps/"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Topic :: Internet",
|
|
|
|
]
|
2023-09-13 21:18:28 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-09-13 21:37:21 +02:00
|
|
|
python = "^3.8"
|
2023-09-13 21:18:28 +02:00
|
|
|
beautifulsoup4 = "^4.12.2"
|
|
|
|
requests = "^2.31.0"
|
2023-09-13 21:37:21 +02:00
|
|
|
pillow = "^10.0.0"
|
2023-09-13 21:18:28 +02:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
fwa-create-app = "fwa.create_app:main"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|