Skip to content

Commit

Permalink
fix a little bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lartpang committed Mar 13, 2021
1 parent 58a2c2f commit 50dba70
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions py_sod_metrics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from py_sod_metrics.sod_metrics import *

__version__ = "1.2.2"
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ pip install pysodmetrics

### Examples

* <./tests/test_metrics.py>
* <./tests/metric_recorder.py>
* <./examples/test_metrics.py>
* <./examples/metric_recorder.py>

## Thanks

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from setuptools import setup, find_packages
import py_sod_metrics as my_script
from setuptools import find_packages, setup

with open("readme.md", "r") as fh:
long_description = fh.read()

setup(
name="pysodmetrics",
packages=find_packages(),
version=my_script.__version__,
version="1.2.3",
license="MIT",
description="A simple and efficient implementation of SOD metrics.",
long_description=long_description,
Expand Down

0 comments on commit 50dba70

Please sign in to comment.