-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
97 lines (92 loc) · 3.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import json
from os import path
from setuptools import setup, find_packages
from sys import version_info
VERSION = "1.0.0"
CURR_PATH = "{}{}".format(path.abspath(path.dirname(__file__)), '/')
def path_format(file_path=None, file_name=None, is_abspath=False,
ignore_raises=False):
path_formatted = "{}{}".format(file_path, file_name)
if ignore_raises:
return path_formatted
if file_path is None or not path.exists(file_path):
raise IOError("Path '{}' doesn't exists".format(file_path))
if file_name is None or not path.exists(path_formatted):
raise IOError(
"File '{}{}' doesn't exists".format(file_path, file_name))
if is_abspath:
return path.abspath(path.join(file_path, file_name))
else:
return path.join(file_path, file_name)
def read_file(is_json=False, file_path=None, encoding='utf-8',
is_encoding=True, ignore_raises=False):
text = None
try:
if file_path is None:
raise Exception("File path received it's None")
if version_info.major >= 3:
if not is_encoding:
encoding = None
with open(file_path, encoding=encoding) as buff:
text = buff.read()
if version_info.major <= 2:
with open(file_path) as buff:
if is_encoding:
text = buff.read().decode(encoding)
else:
text = buff.read()
if is_json:
return json.loads(text)
except Exception as err:
if not ignore_raises:
raise Exception(err)
return text
def read(file_name=None, is_encoding=True, ignore_raises=False):
if file_name is None:
raise Exception("File name not provided")
if ignore_raises:
try:
return read_file(
is_encoding=is_encoding,
file_path=path_format(
file_path=CURR_PATH,
file_name=file_name,
ignore_raises=ignore_raises))
except Exception:
return 'NOTFOUND'
return read_file(is_encoding=is_encoding,
file_path=path_format(
file_path=CURR_PATH,
file_name=file_name,
ignore_raises=ignore_raises))
setup(
name='PyColorimetry',
version=VERSION,
license="CC BY-NC-SA 4.0",
packages=find_packages(),
description='Python library for colorimetric analysis',
long_description=read("README.rst"),
author='Prof. Jhonny Osorio Gallego, M.Sc.',
author_email='osoriojohnny1986@gmail.com',
url='https://github.com/josorio398/PyColorimetry_Library',
download_url='https://github.com/josorio398/PyColorimetry_Library/blob/main/PyColorimetry/ColorimetricAnalysis.py'.format(
VERSION),
keywords=['colorimetry', 'color analysis', 'image segmentation', 'SAM', 'GroundingDino', 'RGB', 'XYZ', 'CIELAB'],
install_requires=['groundingdino-py','segment-anything-py==1.0','opencv-python'],
setup_requires=['groundingdino-py','segment-anything-py==1.0','opencv-python'],
tests_require=[
'pytest',
'pytest-cov',
'pytest-html',
'pytest-dependency',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)