-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
executable file
·130 lines (110 loc) · 3.79 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/env python3
import io
import os
from os import path, walk
from setuptools import setup, find_packages
from setuptools.command.install import install
with io.open('README.pypi', 'r', encoding='utf-8') as f:
ABOUT = f.read()
NAME = 'Orange3-ImageAnalytics'
MAJOR = 0
MINOR = 13
MICRO = 0
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
AUTHOR = 'Bioinformatics Laboratory, FRI UL'
AUTHOR_EMAIL = '[email protected]'
URL = 'http://orange.biolab.si/download'
DESCRIPTION = 'Orange3 add-on for image data mining.'
LONG_DESCRIPTION = ABOUT
LICENSE = 'GPL3+'
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only'
]
KEYWORDS = [
'orange3 add-on',
'orange3-imageanalytics'
]
PACKAGES = find_packages()
PACKAGE_DATA = {
'orangecontrib.imageanalytics.widgets': ['icons/*.svg'],
'orangecontrib.imageanalytics.widgets.tests': ['test_images/*'],
'orangecontrib.imageanalytics.tests': ['test_images/*', 'test_images/img/*', 'test_images/img/inner/*'],
}
ENTRY_POINTS = {
'orange.widgets':
('Image Analytics = orangecontrib.imageanalytics.widgets',),
'orange3.addon':
('Orange3-Imageanalytics = orangecontrib.imageanalytics',),
# Register widget help
"orange.canvas.help": (
'html-index = orangecontrib.imageanalytics.widgets:WIDGET_HELP_PATH',)
}
DATA_FILES = [
# Data files that will be installed outside site-packages folder
]
def include_documentation(local_dir, install_dir):
global DATA_FILES
# if 'bdist_wheel' in sys.argv and not path.exists(local_dir):
# print("Directory '{}' does not exist. "
# "Please build documentation before running bdist_wheel."
# .format(path.abspath(local_dir)))
# sys.exit(0)
doc_files = []
for dirpath, dirs, files in walk(local_dir):
doc_files.append((dirpath.replace(local_dir, install_dir),
[path.join(dirpath, f) for f in files]))
DATA_FILES.extend(doc_files)
class InstallMultilingualCommand(install):
def run(self):
install.run(self)
self.compile_to_multilingual()
def compile_to_multilingual(self):
from trubar import translate
package_dir = os.path.dirname(os.path.abspath(__file__))
translate(
"msgs.jaml",
source_dir=os.path.join(self.install_lib, "orangecontrib", "imageanalytics"),
config_file=os.path.join(package_dir, "i18n", "trubar-config.yaml"))
if __name__ == '__main__':
include_documentation('doc/_build/html', 'help/orange3-imageanalytics')
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license=LICENSE,
packages=PACKAGES,
data_files=DATA_FILES,
package_data=PACKAGE_DATA,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
install_requires=[
"AnyQt",
"ndf >=0.1.4",
"numpy >=1.16",
"Orange3 >=3.37.0",
"orange-canvas-core >=0.2.2",
"orange-widget-base >=4.23.0",
"pillow >=6.2.0",
"requests",
"requests_cache",
"scipy",
],
cmdclass={
'install': InstallMultilingualCommand,
},
extras_require={
'test': ['coverage', ],
'doc': ['sphinx', 'recommonmark', 'sphinx_rtd_theme', ],
},
namespace_packages=['orangecontrib'],
entry_points=ENTRY_POINTS,
)