-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (48 loc) · 1.66 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Based on the following article:
# https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name = 'HDRutils',
packages = find_packages(),
package_data = {'HDRutils': ['noise_modeling/darktable.json']},
include_package_data=True,
version = '1.2',
license='MIT',
description = 'Utility functions for performing basic operations on HDR images, including ' \
'merging and deghosting',
author = 'Param Hanji',
author_email = 'param.hanji@gmail.com',
url = 'https://github.com/gfxdisp/HDRutils',
long_description=long_description,
long_description_content_type='text/markdown',
keywords = ['HDR', 'Merging', 'Deghosting', 'simulation', 'exposure'],
install_requires=[
'numpy',
'imageio>=2.21.2',
'rawpy',
'exifread',
'tqdm',
'colour-demosaicing',
'matplotlib',
'scipy>=1.7.1',
'scikit-image>=0.18.3',
'pyexr'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'],
entry_points={
'console_scripts': [
'HDRmerge=HDRutils.merge:main'
]
}
)