forked from biolab/orange3-timeseries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
107 lines (94 loc) · 3.43 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
#!/usr/bin/env python
import os
import sys
import pkg_resources
from setuptools import setup, find_packages
from setuptools.command.install import install
VERSION = '0.2.0'
ENTRY_POINTS = {
'orange3.addon': (
'timeseries = orangecontrib.timeseries',
),
# 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
),
# 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/datafusion/widgets/__init__.py
'Time Series = orangecontrib.timeseries.widgets',
),
# Widget help
"orange.canvas.help": (
'html-index = orangecontrib.timeseries.widgets:WIDGET_HELP_PATH',
)
}
class LinkDatasets(install):
def run(self):
super().run()
old_cwd = os.getcwd()
os.chdir(os.path.abspath(os.path.sep))
src = pkg_resources.resource_filename('orangecontrib.timeseries', 'datasets')
dst = os.path.join(pkg_resources.resource_filename('Orange', 'datasets'), 'timeseries')
try:
os.remove(dst)
except OSError:
pass
try:
os.symlink(src, dst, target_is_directory=True)
except OSError:
pass
finally:
os.chdir(old_cwd)
if __name__ == '__main__':
setup(
name="Orange3-Timeseries",
description="Orange3 add-on for exploring time series and sequential data.",
version=VERSION,
author='Bioinformatics Laboratory, FRI UL',
author_email='info@biolab.si',
url='https://github.com/biolab/orange3-timeseries',
keywords=(
'time series',
'sequence analysis',
'orange3 add-on',
'ARIMA',
'VAR model',
'forecast'
),
cmdclass={'install': LinkDatasets},
packages=find_packages(),
package_data={
"orangecontrib.timeseries.widgets": ["icons/*.svg"],
"orangecontrib.timeseries": ["datasets/*.tab",
"datasets/*.csv"],
},
install_requires=[
'Orange3',
'statsmodels>=0.6.1',
'pandas', # statsmodels requires this but doesn't have it in dependencies?
'numpy',
'scipy>=0.17',
],
entry_points=ENTRY_POINTS,
test_suite='orangecontrib.timeseries.tests',
namespace_packages=['orangecontrib'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Environment :: Plugins',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
]
)