|
9 | 9 |
|
10 | 10 |
|
11 | 11 | setup(
|
12 |
| - name='im2dhisteq', |
13 |
| - version='0.0.13', |
| 12 | + name="im2dhisteq", |
| 13 | + version="1.0.0", |
14 | 14 | author="mamdasn s",
|
15 | 15 | author_email="<[email protected]>",
|
16 | 16 | 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.", |
18 | 18 | long_description=readme_description,
|
19 |
| - long_description_content_type = "text/markdown", |
| 19 | + long_description_content_type="text/markdown", |
20 | 20 | include_package_data=True,
|
21 |
| - package_dir={'': 'src'}, |
| 21 | + package_dir={"": "src"}, |
22 | 22 | py_modules=["im2dhisteq"],
|
23 | 23 | install_requires=[
|
24 | 24 | "numpy",
|
25 | 25 | "numba",
|
26 | 26 | "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 | + ], |
29 | 41 | classifiers=[
|
30 | 42 | "Development Status :: 3 - Alpha",
|
31 | 43 | "Intended Audience :: Science/Research",
|
32 | 44 | "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
33 | 45 | "Programming Language :: Python :: 3.8",
|
34 | 46 | "Operating System :: OS Independent",
|
35 | 47 | ],
|
36 |
| - scripts=['bin/im2dhisteq'], |
| 48 | + scripts=["bin/im2dhisteq"], |
37 | 49 | )
|
0 commit comments