Merge branch 'main' of https://github.com/jeffthibault/python-nostr into jeffthibault-main

This commit is contained in:
callebtc
2023-02-02 16:27:30 +01:00
18 changed files with 896 additions and 89 deletions

View File

@@ -1,19 +1,36 @@
[tool.poetry]
name = "python-nostr"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
pycryptodomex = "^3.16.0"
websocket-client = "1.3.3"
[tool.poetry.group.dev.dependencies]
black = {version = "^22.12.0", allow-prereleases = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nostr"
authors = [
{ name="Jeff Thibault", email="jdthibault2@gmail.com" },
]
description = "A Python library for making Nostr clients"
urls = { Homepage = "https://github.com/jeffthibault/python-nostr" }
readme = "README.md"
requires-python = ">3.6.0"
dependencies = [
"cffi>=1.15.0",
"cryptography>=37.0.4",
"pycparser>=2.21",
"secp256k1>=0.14.0",
"websocket-client>=1.3.3",
]
license = {file = "LICENSE"}
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
]
dynamic=["version"]
[tool.setuptools_scm]
write_to = "nostr/_version.py"
[project.optional-dependencies]
test = [
"pytest >=7.2.0",
"pytest-cov[all]"
]