mirror of
https://github.com/aljazceru/nutshell.git
synced 2026-01-07 10:54:20 +01:00
fix manifest (#111)
This commit is contained in:
@@ -1,2 +1,6 @@
|
||||
include requirements.txt
|
||||
recursive-include cashu/tor *
|
||||
recursive-include cashu/tor *
|
||||
recursive-include cashu/wallet *
|
||||
exclude tests/*
|
||||
global-exclude *.py[cod]
|
||||
prune tests */__pycache__/*
|
||||
Submodule cashu/nostr updated: 59ddc1b5e0...880dd1183a
BIN
cashu/tor/bundle/.DS_Store
vendored
BIN
cashu/tor/bundle/.DS_Store
vendored
Binary file not shown.
@@ -75,7 +75,7 @@ async def send_nostr(ctx: Context, amount: int, pubkey: str, verbose: bool, yes:
|
||||
default=True,
|
||||
)
|
||||
|
||||
client = NostrClient(private_key=NOSTR_PRIVATE_KEY, relays=NOSTR_RELAYS)
|
||||
client = NostrClient(private_key=NOSTR_PRIVATE_KEY or "", relays=NOSTR_RELAYS)
|
||||
if verbose and not NOSTR_PRIVATE_KEY:
|
||||
# we generated a random key if none was present
|
||||
print(f"Your nostr private key: {client.private_key.bech32()}")
|
||||
|
||||
4
setup.py
4
setup.py
@@ -9,7 +9,7 @@ with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
|
||||
with open("requirements.txt") as f:
|
||||
requirements = f.read().splitlines()
|
||||
|
||||
entry_points = {"console_scripts": ["cashu = cashu.wallet.cli:cli"]}
|
||||
entry_points = {"console_scripts": ["cashu = cashu.wallet.cli.cli:cli"]}
|
||||
|
||||
setuptools.setup(
|
||||
name="cashu",
|
||||
@@ -21,7 +21,7 @@ setuptools.setup(
|
||||
author="Calle",
|
||||
author_email="calle@protonmail.com",
|
||||
license="MIT",
|
||||
packages=setuptools.find_packages(),
|
||||
packages=setuptools.find_namespace_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
|
||||
Reference in New Issue
Block a user