mirror of
https://github.com/unode/firefox_decrypt.git
synced 2025-12-16 12:01:52 +01:00
* 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>
16 lines
468 B
TOML
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"
|