mirror of
https://github.com/scito/extract_otp_secret_keys
synced 2024-11-10 07:10:40 +00:00
66 lines
2.7 KiB
TOML
66 lines
2.7 KiB
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=64.0.0", "wheel>=0.37.0", "pip",
|
|
# https://setuptools-git-versioning.readthedocs.io/en/latest/differences.html
|
|
"setuptools-git-versioning",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "extract_otp_secrets"
|
|
# https://pypi.org/classifiers/
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Environment :: X11 Applications :: Qt",
|
|
"Environment :: Win32 (MS Windows)",
|
|
"Topic :: System :: Archiving :: Backup",
|
|
"Topic :: Utilities",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
"Programming Language :: Python",
|
|
"Natural Language :: English",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
]
|
|
dependencies = [
|
|
"protobuf",
|
|
"qrcode",
|
|
"Pillow",
|
|
"qreader",
|
|
"pyzbar",
|
|
"opencv-contrib-python<=4.7.0; sys_platform == 'darwin'",
|
|
"opencv-contrib-python; sys_platform != 'darwin'",
|
|
"typing_extensions; python_version<='3.7'",
|
|
]
|
|
description = "Extract two-factor authentication (2FA, TFA, OTP) secret keys from export QR codes of 'Google Authenticator' app"
|
|
dynamic = ["version"]
|
|
keywords = ["python", "security", "json", "otp", "csv", "protobuf", "qrcode", "two-factor", "totp", "google-authenticator", "recovery", "proto3", "mfa", "two-factor-authentication", "tfa", "qr-codes", "otpauth", "2fa", "security-tools"]
|
|
license = {text = "GNU General Public License v3 (GPLv3)"}
|
|
readme = "README.md"
|
|
authors = [{name = "scito", email = "info@scito.ch"}]
|
|
maintainers = [{name = "scito", email = "info@scito.ch"}]
|
|
requires-python = ">=3.7, <4"
|
|
scripts = {extract_otp_secrets = "extract_otp_secrets:sys_main"}
|
|
urls = {Project-URL = "https://github.com/scito/extract_otp_secret_keys", Bug-Reports = "https://github.com/scito/extract_otp_secret_keys/issues", Source = "https://github.com/scito/extract_otp_secret_keys" }
|
|
|
|
# [tool.setuptools]
|
|
# Still in beta, once it is stable move config from setup.cfg to pyproject.toml
|
|
# py-modules = ["extract_otp_secrets", "protobuf_generated_python.protobuf_generated_python"]
|
|
|
|
# [tool.setuptools.dynamic]
|
|
# version = {attr = "extract_otp_secrets.VERSION"}
|
|
|
|
[tool.setuptools-git-versioning]
|
|
enabled = true
|
|
|
|
# https://blog.ionelmc.ro/2014/05/25/python-packaging/#the-structure%3E
|
|
# https://docs.pytest.org/en/7.1.x/explanation/goodpractices.html#which-import-mode
|
|
[tool.pytest.ini_options]
|
|
addopts = [ "--import-mode=importlib", ]
|