Skip to content

Commit 8a99528

Browse files
committed
Increment version for a major update
1 parent 758b053 commit 8a99528

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

setup.py

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,41 @@
99

1010

1111
setup(
12-
name='im2dhisteq',
13-
version='0.0.13',
12+
name="im2dhisteq",
13+
version="1.0.0",
1414
author="mamdasn s",
1515
author_email="<[email protected]>",
1616
url="https://github.com/Mamdasn/im2dhisteq",
17-
description='This module attempts to enhance contrast of a given image by equalizing its two dimensional histogram.',
17+
description="This module attempts to enhance contrast of a given image by equalizing its two dimensional histogram.",
1818
long_description=readme_description,
19-
long_description_content_type = "text/markdown",
19+
long_description_content_type="text/markdown",
2020
include_package_data=True,
21-
package_dir={'': 'src'},
21+
package_dir={"": "src"},
2222
py_modules=["im2dhisteq"],
2323
install_requires=[
2424
"numpy",
2525
"numba",
2626
"im2dhist",
27-
],
28-
keywords=['python', 'histogram', 'image-processing', 'contrast-enhancement', 'histogram-equalization', 'image-contrast-enhancement', 'imhist', '2dhist', 'hist2d', 'im2dhisteq', 'two-dimensional-histogram'],
27+
],
28+
keywords=[
29+
"python",
30+
"histogram",
31+
"image-processing",
32+
"contrast-enhancement",
33+
"histogram-equalization",
34+
"image-contrast-enhancement",
35+
"imhist",
36+
"2dhist",
37+
"hist2d",
38+
"im2dhisteq",
39+
"two-dimensional-histogram",
40+
],
2941
classifiers=[
3042
"Development Status :: 3 - Alpha",
3143
"Intended Audience :: Science/Research",
3244
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3345
"Programming Language :: Python :: 3.8",
3446
"Operating System :: OS Independent",
3547
],
36-
scripts=['bin/im2dhisteq'],
48+
scripts=["bin/im2dhisteq"],
3749
)

0 commit comments

Comments
 (0)