Skip to content

Commit

Permalink
fix setup descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien-marty committed May 30, 2023
1 parent 9bb553c commit 81d7510
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

VERSION = "0.0.0"

DESCRIPTION = "Python 3.7+ FNV (fnv0, fnv1, fnv1a) non-cryptographic hash library implemented in C through libffi"
with open("README.md") as f:
LONG_DESCRIPTION = f.read()


setup(
name="fnv-c",
version=VERSION,
description="FIXME",
long_description="FIXME",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/botify-labs/fnv-c",
author="Fabien MARTY",
author_email="fabien.marty@botify.com",
Expand Down
2 changes: 2 additions & 0 deletions tasks.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dunamai import Style, Version
from invoke import task

Expand Down

0 comments on commit 81d7510

Please sign in to comment.