Files
firefox_decrypt-mirror/pyproject.toml
Alex 1a2bb7b8d7 Add pyproject.toml file for pipx installation (#92)
* Create pyproject.toml file with setuptools as build system
* Update .gitignore to prevent uploading packaging directories

Closes #91 

---------

Co-authored-by: Renato Alves <alves.rjc@gmail.com>
2023-04-27 06:09:13 +02:00

16 lines
468 B
TOML

[project]
name = "firefox-decrypt"
version = "1.0.0"
description = "Firefox Decrypt is a tool to extract passwords from Mozilla (Firefox™, Waterfox™, Thunderbird®, SeaMonkey®) profiles"
authors = [{name = "Renato Alves"}]
requires-python = ">=3.9"
license = {text = "GPL-3.0-only"}
readme = "README.md"
[project.scripts]
firefox_decrypt = "firefox_decrypt:run"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"