adapt and update to nostr-sdk 0.7.0

This commit is contained in:
Believethehype
2024-01-05 14:54:21 +01:00
parent f6c2358959
commit fa964a6609
9 changed files with 62 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
VERSION = '0.1.5'
VERSION = '0.1.6'
DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines'
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. '
'This is an early stage release. Interfaces might change/brick')
@@ -14,7 +14,7 @@ setup(
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=['nostr_dvm/**']),
install_requires=["nostr-sdk==0.6.0",
install_requires=["nostr-sdk==0.7.0",
"bech32==1.2.0",
"pycryptodome==3.19.0",
"python-dotenv==1.0.0",