Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeschamps committed Oct 31, 2022
1 parent 90119ee commit e6c64db
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@

_dir = path.abspath(path.dirname(__file__))

with open(path.join(_dir,'denoiseg','version.py')) as f:
with open(path.join(_dir, 'denoiseg', 'version.py')) as f:
exec(f.read())

with open(path.join(_dir,'README.md')) as f:
with open(path.join(_dir, 'README.md')) as f:
long_description = f.read()


setup(name='denoiseg',
version=__version__,
description='DenoiSeg',
Expand All @@ -37,7 +36,7 @@
],

install_requires=[
"n2v>=0.3.2",
"n2v>=0.3.2",
"wrapt<=1.12.1",
"pathlib2;python_version<'3'",
"backports.tempfile;python_version<'3.4'",
Expand All @@ -46,5 +45,8 @@
"numba",
"scikit-learn",
"scikit-image"
]
],
extras_require={
"testing": ["pytest"]
}
)

0 comments on commit e6c64db

Please sign in to comment.