TimeFeatures 1.0.17__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. timefeatures-2.0.0/MANIFEST.in +7 -0
  2. {timefeatures-1.0.17 → timefeatures-2.0.0}/PKG-INFO +128 -91
  3. {timefeatures-1.0.17 → timefeatures-2.0.0}/README.md +84 -70
  4. {timefeatures-1.0.17 → timefeatures-2.0.0}/TimeFeatures.egg-info/PKG-INFO +128 -91
  5. timefeatures-2.0.0/TimeFeatures.egg-info/SOURCES.txt +67 -0
  6. timefeatures-2.0.0/TimeFeatures.egg-info/entry_points.txt +5 -0
  7. timefeatures-2.0.0/TimeFeatures.egg-info/requires.txt +12 -0
  8. timefeatures-2.0.0/docs/Makefile +11 -0
  9. timefeatures-2.0.0/docs/changes.rst +121 -0
  10. timefeatures-2.0.0/docs/conf.py +62 -0
  11. timefeatures-2.0.0/docs/index.rst +97 -0
  12. timefeatures-2.0.0/docs/installation.rst +103 -0
  13. timefeatures-2.0.0/docs/requirements.txt +1 -0
  14. timefeatures-2.0.0/docs/widgets/load-from-db.rst +136 -0
  15. timefeatures-2.0.0/docs/widgets/save-to-db.rst +185 -0
  16. timefeatures-2.0.0/docs/widgets/time-feature-constructor.rst +182 -0
  17. timefeatures-2.0.0/docs/widgets/variable-dependency-graph.rst +160 -0
  18. timefeatures-2.0.0/imgs/installation.png +0 -0
  19. timefeatures-2.0.0/imgs/workflow.png +0 -0
  20. {timefeatures-1.0.17 → timefeatures-2.0.0}/setup.cfg +7 -7
  21. {timefeatures-1.0.17 → timefeatures-2.0.0}/setup.py +57 -35
  22. timefeatures-2.0.0/timefeatures/__init__.py +0 -0
  23. timefeatures-2.0.0/timefeatures/help.py +27 -0
  24. timefeatures-2.0.0/timefeatures/help_html/.buildinfo +4 -0
  25. timefeatures-2.0.0/timefeatures/help_html/_sources/changes.rst.txt +121 -0
  26. timefeatures-2.0.0/timefeatures/help_html/_sources/index.rst.txt +97 -0
  27. timefeatures-2.0.0/timefeatures/help_html/_sources/installation.rst.txt +103 -0
  28. timefeatures-2.0.0/timefeatures/help_html/_sources/widgets/load-from-db.rst.txt +136 -0
  29. timefeatures-2.0.0/timefeatures/help_html/_sources/widgets/save-to-db.rst.txt +185 -0
  30. timefeatures-2.0.0/timefeatures/help_html/_sources/widgets/time-feature-constructor.rst.txt +182 -0
  31. timefeatures-2.0.0/timefeatures/help_html/_sources/widgets/variable-dependency-graph.rst.txt +160 -0
  32. timefeatures-2.0.0/timefeatures/help_html/_static/alabaster.css +668 -0
  33. timefeatures-2.0.0/timefeatures/help_html/_static/basic.css +914 -0
  34. timefeatures-2.0.0/timefeatures/help_html/_static/custom.css +1 -0
  35. timefeatures-2.0.0/timefeatures/help_html/_static/doctools.js +149 -0
  36. timefeatures-2.0.0/timefeatures/help_html/_static/documentation_options.js +13 -0
  37. timefeatures-2.0.0/timefeatures/help_html/_static/file.png +0 -0
  38. timefeatures-2.0.0/timefeatures/help_html/_static/github-banner.svg +5 -0
  39. timefeatures-2.0.0/timefeatures/help_html/_static/language_data.js +192 -0
  40. timefeatures-2.0.0/timefeatures/help_html/_static/minus.png +0 -0
  41. timefeatures-2.0.0/timefeatures/help_html/_static/plus.png +0 -0
  42. timefeatures-2.0.0/timefeatures/help_html/_static/pygments.css +84 -0
  43. timefeatures-2.0.0/timefeatures/help_html/_static/searchtools.js +632 -0
  44. timefeatures-2.0.0/timefeatures/help_html/_static/sphinx_highlight.js +154 -0
  45. timefeatures-2.0.0/timefeatures/help_html/changes.html +241 -0
  46. timefeatures-2.0.0/timefeatures/help_html/genindex.html +119 -0
  47. timefeatures-2.0.0/timefeatures/help_html/index.html +226 -0
  48. timefeatures-2.0.0/timefeatures/help_html/installation.html +231 -0
  49. timefeatures-2.0.0/timefeatures/help_html/objects.inv +0 -0
  50. timefeatures-2.0.0/timefeatures/help_html/search.html +137 -0
  51. timefeatures-2.0.0/timefeatures/help_html/searchindex.js +1 -0
  52. timefeatures-2.0.0/timefeatures/help_html/widgets/load-from-db.html +261 -0
  53. timefeatures-2.0.0/timefeatures/help_html/widgets/save-to-db.html +318 -0
  54. timefeatures-2.0.0/timefeatures/help_html/widgets/time-feature-constructor.html +321 -0
  55. timefeatures-2.0.0/timefeatures/help_html/widgets/variable-dependency-graph.html +308 -0
  56. timefeatures-2.0.0/timefeatures/widgets/__init__.py +17 -0
  57. timefeatures-2.0.0/timefeatures/widgets/icons/loaddatadb.svg +1 -0
  58. timefeatures-2.0.0/timefeatures/widgets/owloadfromdb.py +553 -0
  59. timefeatures-2.0.0/timefeatures/widgets/owsavetodb.py +850 -0
  60. {timefeatures-1.0.17 → timefeatures-2.0.0}/timefeatures/widgets/owtimefeaturesconstructor.py +1891 -1860
  61. timefeatures-2.0.0/timefeatures/widgets/owvardependencygraph.py +268 -0
  62. timefeatures-1.0.17/TimeFeatures.egg-info/SOURCES.txt +0 -17
  63. timefeatures-1.0.17/TimeFeatures.egg-info/entry_points.txt +0 -2
  64. timefeatures-1.0.17/timefeatures/widgets/__init__.py +0 -5
  65. timefeatures-1.0.17/timefeatures/widgets/owsavetodb.py +0 -378
  66. timefeatures-1.0.17/timefeatures/widgets/owvardependencygraph.py +0 -240
  67. {timefeatures-1.0.17 → timefeatures-2.0.0}/LICENSE +0 -0
  68. {timefeatures-1.0.17 → timefeatures-2.0.0}/TimeFeatures.egg-info/dependency_links.txt +0 -0
  69. {timefeatures-1.0.17 → timefeatures-2.0.0}/TimeFeatures.egg-info/top_level.txt +0 -0
  70. {timefeatures-1.0.17 → timefeatures-2.0.0}/timefeatures/widgets/icons/graphgenerator.svg +0 -0
  71. {timefeatures-1.0.17 → timefeatures-2.0.0}/timefeatures/widgets/icons/savedatadb.svg +0 -0
  72. {timefeatures-1.0.17 → timefeatures-2.0.0}/timefeatures/widgets/icons/timefeature-xs.svg +0 -0
  73. {timefeatures-1.0.17 → timefeatures-2.0.0}/timefeatures/widgets/icons/timefeature.svg +0 -0
@@ -0,0 +1,7 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include docs *.rst *.py *.txt Makefile
4
+ recursive-include timefeatures/help_html *
5
+ recursive-include imgs *.png
6
+ prune docs/build
7
+ prune timefeatures/help_html/.doctrees
@@ -1,91 +1,128 @@
1
- Metadata-Version: 2.1
2
- Name: TimeFeatures
3
- Version: 1.0.17
4
- Summary: Timefeatures add-on for Orange 3 data mining software.
5
- Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
- Author: Alejandro Rivas García
7
- Author-email: alejandrorivasgarcia@gmail.com
8
- License: GPL3+
9
- Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Environment :: Plugins
12
- Classifier: Programming Language :: Python
13
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Classifier: Intended Audience :: Education
17
- Classifier: Intended Audience :: Science/Research
18
- Classifier: Intended Audience :: Developers
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
-
22
- Orange3 TimeFeatures
23
- ===============
24
-
25
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
26
-
27
- [Orange]: https://orangedatamining.com/
28
-
29
- Installation
30
- ------------
31
-
32
- ### Orange add-on installer
33
-
34
- Install from Orange add-on installer through Options -> Add-ons.
35
-
36
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
37
-
38
- ### Using pip
39
-
40
- To install the add-on with pip use
41
-
42
- pip install TimeFeatures
43
-
44
- To install the add-on from source, run
45
-
46
- python setup.py install
47
-
48
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
49
- Python's site-packages directory), run
50
-
51
- python setup.py develop
52
-
53
- You can also run
54
-
55
- pip install -e .
56
-
57
- which is sometimes preferable as you can *pip uninstall* packages later.
58
-
59
- ### Anaconda
60
-
61
- If using Anaconda Python distribution, simply run
62
-
63
- pip install TimeFeatures
64
-
65
- **Required Dependencies**:
66
- * numpy>=1.22.4
67
- * AnyQt>=0.2.0
68
- * Orange3>=3.34.0
69
- * PyQt5>=5.15.6
70
- * scipy>=1.7.3
71
- * Orange3-Network>=1.8.0
72
-
73
- Usage
74
- -----
75
-
76
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
77
- use
78
-
79
- orange-canvas
80
-
81
- or
82
-
83
- python3 -m Orange.canvas
84
-
85
- New widgets are in the toolbox bar under Time-Features section.
86
-
87
- Workflow Example
88
- -----
89
- This is an example of how you can use this add-on.
90
-
91
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Metadata-Version: 2.4
2
+ Name: TimeFeatures
3
+ Version: 2.0.0
4
+ Summary: Timefeatures add-on for Orange 3 data mining software.
5
+ Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
+ Author: Alejandro Rivas García
7
+ Author-email: alejandrorivasgarcia@gmail.com
8
+ License: GPL3+
9
+ Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Plugins
12
+ Classifier: Programming Language :: Python
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Intended Audience :: Education
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Intended Audience :: Developers
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: numpy>=1.22.4
22
+ Requires-Dist: AnyQt>=0.2.0
23
+ Requires-Dist: PyQt5>=5.15.6
24
+ Requires-Dist: PyQtWebEngine>=5.15.6
25
+ Requires-Dist: scipy>=1.7.3
26
+ Requires-Dist: SQLAlchemy>=1.4.0
27
+ Requires-Dist: psycopg2-binary>=2.9.9
28
+ Requires-Dist: PyMySQL>=1.0.0
29
+ Requires-Dist: Orange3-Network>=1.8.0
30
+ Provides-Extra: docs
31
+ Requires-Dist: Sphinx>=7.0; extra == "docs"
32
+ Dynamic: author
33
+ Dynamic: author-email
34
+ Dynamic: classifier
35
+ Dynamic: description
36
+ Dynamic: description-content-type
37
+ Dynamic: home-page
38
+ Dynamic: keywords
39
+ Dynamic: license
40
+ Dynamic: license-file
41
+ Dynamic: provides-extra
42
+ Dynamic: requires-dist
43
+ Dynamic: summary
44
+
45
+ Orange3 TimeFeatures
46
+ ===============
47
+
48
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
49
+
50
+ [Orange]: https://orangedatamining.com/
51
+
52
+ Installation
53
+ ------------
54
+
55
+ ### Orange add-on installer
56
+
57
+ Install from Orange add-on installer through Options -> Add-ons.
58
+
59
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
60
+
61
+ ### Using pip
62
+
63
+ To install the add-on with pip use
64
+
65
+ pip install TimeFeatures
66
+
67
+ To install the add-on from source, run
68
+
69
+ python setup.py install
70
+
71
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
72
+ Python's site-packages directory), run
73
+
74
+ python setup.py develop
75
+
76
+ You can also run
77
+
78
+ pip install -e .
79
+
80
+ which is sometimes preferable as you can *pip uninstall* packages later.
81
+
82
+ ### Anaconda
83
+
84
+ If using Anaconda Python distribution, simply run
85
+
86
+ pip install TimeFeatures
87
+
88
+ **Required Dependencies**:
89
+ * numpy>=1.22.4
90
+ * AnyQt>=0.2.0
91
+ * Orange3>=3.34.0
92
+ * PyQt5>=5.15.6
93
+ * PyQtWebEngine>=5.15.6
94
+ * scipy>=1.7.3
95
+ * Orange3-Network>=1.8.0
96
+
97
+ Usage
98
+ -----
99
+
100
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
101
+ use
102
+
103
+ orange-canvas
104
+
105
+ or
106
+
107
+ python3 -m Orange.canvas
108
+
109
+ New widgets are in the toolbox bar under Time-Features section.
110
+
111
+ Documentation
112
+ -------------
113
+
114
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
115
+ local HTML pages through its internal Help panel, not through an internet URL.
116
+ To rebuild the documentation locally, run
117
+
118
+ pip install -e ".[docs]"
119
+ python -m sphinx -b html docs timefeatures/help_html
120
+
121
+ Use the widget help action in Orange to open the corresponding page inside the
122
+ Orange Help window.
123
+
124
+ Workflow Example
125
+ -----
126
+ This is an example of how you can use this add-on.
127
+
128
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -1,70 +1,84 @@
1
- Orange3 TimeFeatures
2
- ===============
3
-
4
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
5
-
6
- [Orange]: https://orangedatamining.com/
7
-
8
- Installation
9
- ------------
10
-
11
- ### Orange add-on installer
12
-
13
- Install from Orange add-on installer through Options -> Add-ons.
14
-
15
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
16
-
17
- ### Using pip
18
-
19
- To install the add-on with pip use
20
-
21
- pip install TimeFeatures
22
-
23
- To install the add-on from source, run
24
-
25
- python setup.py install
26
-
27
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
28
- Python's site-packages directory), run
29
-
30
- python setup.py develop
31
-
32
- You can also run
33
-
34
- pip install -e .
35
-
36
- which is sometimes preferable as you can *pip uninstall* packages later.
37
-
38
- ### Anaconda
39
-
40
- If using Anaconda Python distribution, simply run
41
-
42
- pip install TimeFeatures
43
-
44
- **Required Dependencies**:
45
- * numpy>=1.22.4
46
- * AnyQt>=0.2.0
47
- * Orange3>=3.34.0
48
- * PyQt5>=5.15.6
49
- * scipy>=1.7.3
50
- * Orange3-Network>=1.8.0
51
-
52
- Usage
53
- -----
54
-
55
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
56
- use
57
-
58
- orange-canvas
59
-
60
- or
61
-
62
- python3 -m Orange.canvas
63
-
64
- New widgets are in the toolbox bar under Time-Features section.
65
-
66
- Workflow Example
67
- -----
68
- This is an example of how you can use this add-on.
69
-
70
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Orange3 TimeFeatures
2
+ ===============
3
+
4
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
5
+
6
+ [Orange]: https://orangedatamining.com/
7
+
8
+ Installation
9
+ ------------
10
+
11
+ ### Orange add-on installer
12
+
13
+ Install from Orange add-on installer through Options -> Add-ons.
14
+
15
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
16
+
17
+ ### Using pip
18
+
19
+ To install the add-on with pip use
20
+
21
+ pip install TimeFeatures
22
+
23
+ To install the add-on from source, run
24
+
25
+ python setup.py install
26
+
27
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
28
+ Python's site-packages directory), run
29
+
30
+ python setup.py develop
31
+
32
+ You can also run
33
+
34
+ pip install -e .
35
+
36
+ which is sometimes preferable as you can *pip uninstall* packages later.
37
+
38
+ ### Anaconda
39
+
40
+ If using Anaconda Python distribution, simply run
41
+
42
+ pip install TimeFeatures
43
+
44
+ **Required Dependencies**:
45
+ * numpy>=1.22.4
46
+ * AnyQt>=0.2.0
47
+ * Orange3>=3.34.0
48
+ * PyQt5>=5.15.6
49
+ * PyQtWebEngine>=5.15.6
50
+ * scipy>=1.7.3
51
+ * Orange3-Network>=1.8.0
52
+
53
+ Usage
54
+ -----
55
+
56
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
57
+ use
58
+
59
+ orange-canvas
60
+
61
+ or
62
+
63
+ python3 -m Orange.canvas
64
+
65
+ New widgets are in the toolbox bar under Time-Features section.
66
+
67
+ Documentation
68
+ -------------
69
+
70
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
71
+ local HTML pages through its internal Help panel, not through an internet URL.
72
+ To rebuild the documentation locally, run
73
+
74
+ pip install -e ".[docs]"
75
+ python -m sphinx -b html docs timefeatures/help_html
76
+
77
+ Use the widget help action in Orange to open the corresponding page inside the
78
+ Orange Help window.
79
+
80
+ Workflow Example
81
+ -----
82
+ This is an example of how you can use this add-on.
83
+
84
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -1,91 +1,128 @@
1
- Metadata-Version: 2.1
2
- Name: TimeFeatures
3
- Version: 1.0.17
4
- Summary: Timefeatures add-on for Orange 3 data mining software.
5
- Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
- Author: Alejandro Rivas García
7
- Author-email: alejandrorivasgarcia@gmail.com
8
- License: GPL3+
9
- Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Environment :: Plugins
12
- Classifier: Programming Language :: Python
13
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Classifier: Intended Audience :: Education
17
- Classifier: Intended Audience :: Science/Research
18
- Classifier: Intended Audience :: Developers
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
-
22
- Orange3 TimeFeatures
23
- ===============
24
-
25
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
26
-
27
- [Orange]: https://orangedatamining.com/
28
-
29
- Installation
30
- ------------
31
-
32
- ### Orange add-on installer
33
-
34
- Install from Orange add-on installer through Options -> Add-ons.
35
-
36
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
37
-
38
- ### Using pip
39
-
40
- To install the add-on with pip use
41
-
42
- pip install TimeFeatures
43
-
44
- To install the add-on from source, run
45
-
46
- python setup.py install
47
-
48
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
49
- Python's site-packages directory), run
50
-
51
- python setup.py develop
52
-
53
- You can also run
54
-
55
- pip install -e .
56
-
57
- which is sometimes preferable as you can *pip uninstall* packages later.
58
-
59
- ### Anaconda
60
-
61
- If using Anaconda Python distribution, simply run
62
-
63
- pip install TimeFeatures
64
-
65
- **Required Dependencies**:
66
- * numpy>=1.22.4
67
- * AnyQt>=0.2.0
68
- * Orange3>=3.34.0
69
- * PyQt5>=5.15.6
70
- * scipy>=1.7.3
71
- * Orange3-Network>=1.8.0
72
-
73
- Usage
74
- -----
75
-
76
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
77
- use
78
-
79
- orange-canvas
80
-
81
- or
82
-
83
- python3 -m Orange.canvas
84
-
85
- New widgets are in the toolbox bar under Time-Features section.
86
-
87
- Workflow Example
88
- -----
89
- This is an example of how you can use this add-on.
90
-
91
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Metadata-Version: 2.4
2
+ Name: TimeFeatures
3
+ Version: 2.0.0
4
+ Summary: Timefeatures add-on for Orange 3 data mining software.
5
+ Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
+ Author: Alejandro Rivas García
7
+ Author-email: alejandrorivasgarcia@gmail.com
8
+ License: GPL3+
9
+ Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Plugins
12
+ Classifier: Programming Language :: Python
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Intended Audience :: Education
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Intended Audience :: Developers
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: numpy>=1.22.4
22
+ Requires-Dist: AnyQt>=0.2.0
23
+ Requires-Dist: PyQt5>=5.15.6
24
+ Requires-Dist: PyQtWebEngine>=5.15.6
25
+ Requires-Dist: scipy>=1.7.3
26
+ Requires-Dist: SQLAlchemy>=1.4.0
27
+ Requires-Dist: psycopg2-binary>=2.9.9
28
+ Requires-Dist: PyMySQL>=1.0.0
29
+ Requires-Dist: Orange3-Network>=1.8.0
30
+ Provides-Extra: docs
31
+ Requires-Dist: Sphinx>=7.0; extra == "docs"
32
+ Dynamic: author
33
+ Dynamic: author-email
34
+ Dynamic: classifier
35
+ Dynamic: description
36
+ Dynamic: description-content-type
37
+ Dynamic: home-page
38
+ Dynamic: keywords
39
+ Dynamic: license
40
+ Dynamic: license-file
41
+ Dynamic: provides-extra
42
+ Dynamic: requires-dist
43
+ Dynamic: summary
44
+
45
+ Orange3 TimeFeatures
46
+ ===============
47
+
48
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
49
+
50
+ [Orange]: https://orangedatamining.com/
51
+
52
+ Installation
53
+ ------------
54
+
55
+ ### Orange add-on installer
56
+
57
+ Install from Orange add-on installer through Options -> Add-ons.
58
+
59
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
60
+
61
+ ### Using pip
62
+
63
+ To install the add-on with pip use
64
+
65
+ pip install TimeFeatures
66
+
67
+ To install the add-on from source, run
68
+
69
+ python setup.py install
70
+
71
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
72
+ Python's site-packages directory), run
73
+
74
+ python setup.py develop
75
+
76
+ You can also run
77
+
78
+ pip install -e .
79
+
80
+ which is sometimes preferable as you can *pip uninstall* packages later.
81
+
82
+ ### Anaconda
83
+
84
+ If using Anaconda Python distribution, simply run
85
+
86
+ pip install TimeFeatures
87
+
88
+ **Required Dependencies**:
89
+ * numpy>=1.22.4
90
+ * AnyQt>=0.2.0
91
+ * Orange3>=3.34.0
92
+ * PyQt5>=5.15.6
93
+ * PyQtWebEngine>=5.15.6
94
+ * scipy>=1.7.3
95
+ * Orange3-Network>=1.8.0
96
+
97
+ Usage
98
+ -----
99
+
100
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
101
+ use
102
+
103
+ orange-canvas
104
+
105
+ or
106
+
107
+ python3 -m Orange.canvas
108
+
109
+ New widgets are in the toolbox bar under Time-Features section.
110
+
111
+ Documentation
112
+ -------------
113
+
114
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
115
+ local HTML pages through its internal Help panel, not through an internet URL.
116
+ To rebuild the documentation locally, run
117
+
118
+ pip install -e ".[docs]"
119
+ python -m sphinx -b html docs timefeatures/help_html
120
+
121
+ Use the widget help action in Orange to open the corresponding page inside the
122
+ Orange Help window.
123
+
124
+ Workflow Example
125
+ -----
126
+ This is an example of how you can use this add-on.
127
+
128
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -0,0 +1,67 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ setup.cfg
5
+ setup.py
6
+ TimeFeatures.egg-info/PKG-INFO
7
+ TimeFeatures.egg-info/SOURCES.txt
8
+ TimeFeatures.egg-info/dependency_links.txt
9
+ TimeFeatures.egg-info/entry_points.txt
10
+ TimeFeatures.egg-info/requires.txt
11
+ TimeFeatures.egg-info/top_level.txt
12
+ docs/Makefile
13
+ docs/changes.rst
14
+ docs/conf.py
15
+ docs/index.rst
16
+ docs/installation.rst
17
+ docs/requirements.txt
18
+ docs/widgets/load-from-db.rst
19
+ docs/widgets/save-to-db.rst
20
+ docs/widgets/time-feature-constructor.rst
21
+ docs/widgets/variable-dependency-graph.rst
22
+ imgs/installation.png
23
+ imgs/workflow.png
24
+ timefeatures/__init__.py
25
+ timefeatures/help.py
26
+ timefeatures/help_html/.buildinfo
27
+ timefeatures/help_html/changes.html
28
+ timefeatures/help_html/genindex.html
29
+ timefeatures/help_html/index.html
30
+ timefeatures/help_html/installation.html
31
+ timefeatures/help_html/objects.inv
32
+ timefeatures/help_html/search.html
33
+ timefeatures/help_html/searchindex.js
34
+ timefeatures/help_html/_sources/changes.rst.txt
35
+ timefeatures/help_html/_sources/index.rst.txt
36
+ timefeatures/help_html/_sources/installation.rst.txt
37
+ timefeatures/help_html/_sources/widgets/load-from-db.rst.txt
38
+ timefeatures/help_html/_sources/widgets/save-to-db.rst.txt
39
+ timefeatures/help_html/_sources/widgets/time-feature-constructor.rst.txt
40
+ timefeatures/help_html/_sources/widgets/variable-dependency-graph.rst.txt
41
+ timefeatures/help_html/_static/alabaster.css
42
+ timefeatures/help_html/_static/basic.css
43
+ timefeatures/help_html/_static/custom.css
44
+ timefeatures/help_html/_static/doctools.js
45
+ timefeatures/help_html/_static/documentation_options.js
46
+ timefeatures/help_html/_static/file.png
47
+ timefeatures/help_html/_static/github-banner.svg
48
+ timefeatures/help_html/_static/language_data.js
49
+ timefeatures/help_html/_static/minus.png
50
+ timefeatures/help_html/_static/plus.png
51
+ timefeatures/help_html/_static/pygments.css
52
+ timefeatures/help_html/_static/searchtools.js
53
+ timefeatures/help_html/_static/sphinx_highlight.js
54
+ timefeatures/help_html/widgets/load-from-db.html
55
+ timefeatures/help_html/widgets/save-to-db.html
56
+ timefeatures/help_html/widgets/time-feature-constructor.html
57
+ timefeatures/help_html/widgets/variable-dependency-graph.html
58
+ timefeatures/widgets/__init__.py
59
+ timefeatures/widgets/owloadfromdb.py
60
+ timefeatures/widgets/owsavetodb.py
61
+ timefeatures/widgets/owtimefeaturesconstructor.py
62
+ timefeatures/widgets/owvardependencygraph.py
63
+ timefeatures/widgets/icons/graphgenerator.svg
64
+ timefeatures/widgets/icons/loaddatadb.svg
65
+ timefeatures/widgets/icons/savedatadb.svg
66
+ timefeatures/widgets/icons/timefeature-xs.svg
67
+ timefeatures/widgets/icons/timefeature.svg