40 lines
962 B
TOML
40 lines
962 B
TOML
[tool.poetry]
|
|
name = "fwa"
|
|
version = "0.2.0"
|
|
description = "Firefox Web Apps"
|
|
authors = ["Ceda EI <ceda_ei@webionite.com>"]
|
|
license = "GPL-3.0-only"
|
|
readme = "README.md"
|
|
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",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
beautifulsoup4 = "^4.12.2"
|
|
requests = "^2.31.0"
|
|
pillow = "^10.0.0"
|
|
toml = "^0.10.2"
|
|
typer = {extras = ["all"], version = "^0.9.0"}
|
|
prompt-toolkit = "^3.0.39"
|
|
|
|
[tool.poetry.scripts]
|
|
fwa-create-app = "fwa.create_app:main"
|
|
fwa-runner = "fwa.runner:main"
|
|
fwa-setup = "fwa.setup:main"
|
|
|
|
[tool.poetry.group.dev]
|
|
optional = true
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.9.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|