Skip to content

Commit

Permalink
setup updated
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDraco22 committed Sep 11, 2023
1 parent 20bdb4e commit 95bcdac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup


with open("README.md", "r") as fh:
long_description = fh.read()
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()


setup(
Expand All @@ -16,7 +16,7 @@

description="Python Implementation to ZapTools WebSockets",
long_description=long_description,

long_description_content_type='text/markdown',
packages=[
"zaptools"
],
Expand Down

0 comments on commit 95bcdac

Please sign in to comment.