-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (40 loc) · 1.34 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="darktable-lut-generator",
version="0.1.2",
author="Björn Sonnenschein",
author_email="wilecoyote2015@gmail.com",
description="Estimate a .cube 3D lookup table from camera images for the Darktable lut 3D module.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wilecoyote2015/darktabe_lut_generator",
project_urls={
"Bug Tracker": "https://github.com/wilecoyote2015/darktabe_lut_generator/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7",
include_package_data=True,
entry_points={
'console_scripts': [
'darktable_lut_generator=darktable_lut_generator.main:main',
'darktable_lut_generate_pattern=darktable_lut_generator.make_rgb_image:main'
]
},
install_requires=[
'numpy',
'scipy',
'sklearn',
'opencv-python',
'tqdm',
'plotly',
'pandas',
]
)