You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
610 B
33 lines
610 B
[build-system] |
|
requires = ["setuptools>=61"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "imwald" |
|
version = "0.1.0" |
|
description = "Linux-native Nostr client (Qt / PySide6)" |
|
readme = "README.md" |
|
requires-python = ">=3.11" |
|
dependencies = [ |
|
"PySide6>=6.6", |
|
"cryptography>=42", |
|
"bech32>=1.2", |
|
"coincurve>=20", |
|
"PyNaCl>=1.5", |
|
"websockets>=12", |
|
] |
|
|
|
[project.optional-dependencies] |
|
dev = ["pytest>=8"] |
|
|
|
[project.scripts] |
|
imwald = "imwald.__main__:main" |
|
|
|
[tool.setuptools.packages.find] |
|
where = ["src"] |
|
|
|
[tool.setuptools.package-dir] |
|
"" = "src" |
|
|
|
[tool.pytest.ini_options] |
|
pythonpath = ["src"]
|
|
|