-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.48 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# Reading the content of the requirements.txt
with open('requirements/requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="ColorTransferLib",
version="2.0.1-3",
author="Herbert Potechius",
description="This library provides color and tyle transfer algorithms which were published in scientific papers. Additionall a set of IQA metrics are available.",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
package_data={"": ['Options/*.json',
'Config/*.json',
'Algorithms/TPS/L2RegistrationForCT/*',
'Algorithms/TPS/L2RegistrationForCT/*/*',
'Algorithms/TPS/L2RegistrationForCT/*/*/*',
'Evaluation/VSI/saliency_models/resources/*.mat',
'Algorithms/DDC/basicsr/archs/ddcolor_arch_utils/*']},
include_package_data=True,
python_requires='>=3.10,<3.11',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires= requirements
)
# run seperately: "pip install opencv-python==4.9.0.80 --no-binary opencv-python"