Skip to content

Commit

Permalink
normalize version and app name
Browse files Browse the repository at this point in the history
  • Loading branch information
akarve committed May 26, 2024
1 parent c26b03a commit faa8d48
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import find_packages, setup

from src.bipsea.util import __app_name__, __version__

setup(
name="bipsea",
version="0.1.2",
name=__app_name__,
version=__version__,
package_dir={"": "src"},
packages=find_packages(where="src"),
description="Python implementation of BIP 85 (and BIP 32)",
Expand Down

0 comments on commit faa8d48

Please sign in to comment.