package setup

This commit is contained in:
jeffthibault
2022-12-29 14:58:19 -05:00
parent c55dee5755
commit fb469bdde6
5 changed files with 41 additions and 27 deletions

View File

@@ -1,21 +1,3 @@
from setuptools import setup, find_packages
from setuptools import setup
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',
],
)
setup()