forked from Quasars/orange-spectroscopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
149 lines (121 loc) · 4.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env python
import os
from os import walk, path
import subprocess
import sys
from setuptools import setup, find_packages, Command
PACKAGES = find_packages()
PACKAGE_DATA = {}
README_FILE = os.path.join(os.path.dirname(__file__), 'README.pypi')
LONG_DESCRIPTION = open(README_FILE).read()
DATA_FILES = [
# Data files that will be installed outside site-packages folder
]
ENTRY_POINTS = {
# Entry points that marks this package as an orange add-on. If set, addon will
# be shown in the add-ons manager even if not published on PyPi.
'orange3.addon': (
'spectroscopy = orangecontrib.spectroscopy',
),
# Entry point used to specify packages containing tutorials accessible
# from welcome screen. Tutorials are saved Orange Workflows (.ows files).
'orange.widgets.tutorials': (
# Syntax: any_text = path.to.package.containing.tutorials
'infraredtutorials = orangecontrib.spectroscopy.tutorials',
),
# Entry point used to specify packages containing widgets.
'orange.widgets': (
# Syntax: category name = path.to.package.containing.widgets
# Widget category specification can be seen in
# orangecontrib/example/widgets/__init__.py
'Spectroscopy = orangecontrib.spectroscopy.widgets',
),
# Register widget help
"orange.canvas.help": (
'html-index = orangecontrib.spectroscopy.widgets:WIDGET_HELP_PATH',)
}
KEYWORDS = [
# [PyPi](https://pypi.python.org) packages with keyword "orange3 add-on"
# can be installed using the Orange Add-on Manager
'orange3 add-on',
'spectroscopy',
'infrared'
]
class CoverageCommand(Command):
"""A setup.py coverage subcommand developers can run locally."""
description = "run code coverage"
user_options = []
initialize_options = finalize_options = lambda self: None
def run(self):
"""Check coverage on current workdir"""
sys.exit(subprocess.call(r'''
coverage run --source=orangecontrib.spectroscopy -m unittest
echo; echo
coverage report --omit="*/tests/*" --omit="*/utils/skimage/*"
coverage html --omit="*/tests/*" --omit="*/utils/skimage/*" &&
{ echo; echo "See also: file://$(pwd)/htmlcov/index.html"; echo; }
''', shell=True, cwd=os.path.dirname(os.path.abspath(__file__))))
class LintCommand(Command):
"""A setup.py lint subcommand developers can run locally."""
description = "run code linter(s)"
user_options = []
initialize_options = finalize_options = lambda self: None
def run(self):
"""Lint current branch compared to a reasonable master branch"""
sys.exit(subprocess.call(r'''
set -eu
upstream="$(git remote -v |
awk '/[@\/]github.com[:\/]Quasars\/orange-spectroscopy[\. ]/{ print $1; exit }')"
git fetch -q $upstream master
best_ancestor=$(git merge-base HEAD refs/remotes/$upstream/master)
.travis/check_pylint_diff $best_ancestor
''', shell=True, cwd=os.path.dirname(os.path.abspath(__file__))))
TEST_SUITE = "orangecontrib.spectroscopy.tests.suite"
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, _, 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)
if __name__ == '__main__':
cmdclass = {
'coverage': CoverageCommand,
'lint': LintCommand,
}
include_documentation('doc/build/htmlhelp', 'help/orange-spectroscopy')
setup(
name="Orange-Spectroscopy",
description='Extends Orange to handle spectral and hyperspectral analysis.',
long_description=LONG_DESCRIPTION,
author='Canadian Light Source, Biolab UL, Soleil, Elettra',
author_email='[email protected]',
version="0.4.1",
packages=PACKAGES,
package_data=PACKAGE_DATA,
data_files=DATA_FILES,
install_requires=[
'Orange3>=3.11.0',
'scipy>=0.14.0',
'spectral>=0.18',
'serverfiles>=0.2',
'AnyQt>=0.0.6',
'pyqtgraph>=0.10.0',
'colorcet',
'h5py',
],
entry_points=ENTRY_POINTS,
keywords=KEYWORDS,
namespace_packages=['orangecontrib'],
test_suite=TEST_SUITE,
include_package_data=True,
zip_safe=False,
url="https://github.com/Quasars/orange-spectroscopy",
cmdclass=cmdclass,
license='GPLv3+',
)