Adds initial test framework; adds PrivateKey.from_nsec() (#13)

* Adds initial test framework; adds PrivateKey.from_nsec()

* Update setup.py
This commit is contained in:
kdmukai
2022-12-27 14:40:50 -06:00
committed by GitHub
parent b5e99fc708
commit 2c93c1df20
7 changed files with 93 additions and 2 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='nostr',
version="0.0.1",
packages=find_packages(include=['nostr']),
python_requires='>3.6.0',
url='https://github.com/jeffthibault/python-nostr',
description="A Python library for making Nostr clients.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)