TimeFeatures 1.0.2__tar.gz → 1.0.4__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.
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/PKG-INFO +16 -7
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/README.md +4 -4
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/TimeFeatures.egg-info/PKG-INFO +16 -7
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/setup.py +5 -4
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/LICENSE +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/TimeFeatures.egg-info/SOURCES.txt +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/TimeFeatures.egg-info/dependency_links.txt +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/TimeFeatures.egg-info/entry_points.txt +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/TimeFeatures.egg-info/top_level.txt +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/setup.cfg +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/__init__.py +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/__init__.py +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/icons/graphgenerator.svg +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/icons/savedatadb.svg +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/icons/timefeature-xs.svg +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/icons/timefeature.svg +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/owsavetodb.py +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/owtfgraphgenerator.py +0 -0
- {TimeFeatures-1.0.2 → TimeFeatures-1.0.4}/timefeatures/widgets/owtimefeatureconstructor.py +0 -0
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: TimeFeatures
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: Timefeatures add-on for Orange 3 data mining software
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: Timefeatures add-on for Orange 3 data mining software.
|
|
5
5
|
Home-page: https://github.com/alervgr/Orange-TimeFeatures
|
|
6
6
|
Author: Alejandro Rivas García
|
|
7
7
|
Author-email: alejandrorivasgarcia@gmail.com
|
|
8
8
|
License: GPL3+
|
|
9
|
-
Keywords: orange3 add-on,timefeatures,graph,time series,data mining,
|
|
9
|
+
Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon
|
|
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
|
|
10
19
|
Description-Content-Type: text/markdown
|
|
11
20
|
License-File: LICENSE
|
|
12
21
|
|
|
13
|
-
Orange3
|
|
22
|
+
Orange3 TimeFeatures
|
|
14
23
|
===============
|
|
15
24
|
|
|
16
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.
|
|
@@ -24,7 +33,7 @@ Installation
|
|
|
24
33
|
|
|
25
34
|
Install from Orange add-on installer through Options -> Add-ons.
|
|
26
35
|
|
|
27
|
-

|
|
36
|
+

|
|
28
37
|
|
|
29
38
|
### Using pip
|
|
30
39
|
|
|
@@ -65,10 +74,10 @@ or
|
|
|
65
74
|
|
|
66
75
|
python3 -m Orange.canvas
|
|
67
76
|
|
|
68
|
-
New widgets are in the toolbox bar under
|
|
77
|
+
New widgets are in the toolbox bar under Time-Features section.
|
|
69
78
|
|
|
70
79
|
Workflow Example
|
|
71
80
|
-----
|
|
72
81
|
This is an example of how you can use this add-on.
|
|
73
82
|
|
|
74
|
-

|
|
83
|
+

|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Orange3
|
|
1
|
+
Orange3 TimeFeatures
|
|
2
2
|
===============
|
|
3
3
|
|
|
4
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.
|
|
@@ -12,7 +12,7 @@ Installation
|
|
|
12
12
|
|
|
13
13
|
Install from Orange add-on installer through Options -> Add-ons.
|
|
14
14
|
|
|
15
|
-

|
|
15
|
+

|
|
16
16
|
|
|
17
17
|
### Using pip
|
|
18
18
|
|
|
@@ -53,10 +53,10 @@ or
|
|
|
53
53
|
|
|
54
54
|
python3 -m Orange.canvas
|
|
55
55
|
|
|
56
|
-
New widgets are in the toolbox bar under
|
|
56
|
+
New widgets are in the toolbox bar under Time-Features section.
|
|
57
57
|
|
|
58
58
|
Workflow Example
|
|
59
59
|
-----
|
|
60
60
|
This is an example of how you can use this add-on.
|
|
61
61
|
|
|
62
|
-

|
|
62
|
+

|
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: TimeFeatures
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: Timefeatures add-on for Orange 3 data mining software
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: Timefeatures add-on for Orange 3 data mining software.
|
|
5
5
|
Home-page: https://github.com/alervgr/Orange-TimeFeatures
|
|
6
6
|
Author: Alejandro Rivas García
|
|
7
7
|
Author-email: alejandrorivasgarcia@gmail.com
|
|
8
8
|
License: GPL3+
|
|
9
|
-
Keywords: orange3 add-on,timefeatures,graph,time series,data mining,
|
|
9
|
+
Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon
|
|
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
|
|
10
19
|
Description-Content-Type: text/markdown
|
|
11
20
|
License-File: LICENSE
|
|
12
21
|
|
|
13
|
-
Orange3
|
|
22
|
+
Orange3 TimeFeatures
|
|
14
23
|
===============
|
|
15
24
|
|
|
16
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.
|
|
@@ -24,7 +33,7 @@ Installation
|
|
|
24
33
|
|
|
25
34
|
Install from Orange add-on installer through Options -> Add-ons.
|
|
26
35
|
|
|
27
|
-

|
|
36
|
+

|
|
28
37
|
|
|
29
38
|
### Using pip
|
|
30
39
|
|
|
@@ -65,10 +74,10 @@ or
|
|
|
65
74
|
|
|
66
75
|
python3 -m Orange.canvas
|
|
67
76
|
|
|
68
|
-
New widgets are in the toolbox bar under
|
|
77
|
+
New widgets are in the toolbox bar under Time-Features section.
|
|
69
78
|
|
|
70
79
|
Workflow Example
|
|
71
80
|
-----
|
|
72
81
|
This is an example of how you can use this add-on.
|
|
73
82
|
|
|
74
|
-

|
|
83
|
+

|
|
@@ -21,15 +21,16 @@ setup(name="TimeFeatures",
|
|
|
21
21
|
packages=["timefeatures.widgets"],
|
|
22
22
|
package_data={"timefeatures.widgets": ["icons/*.svg", "icons/*.png"]},
|
|
23
23
|
entry_points={"orange.widgets": "Time-Features = timefeatures.widgets"},
|
|
24
|
-
version="1.0.
|
|
24
|
+
version="1.0.4",
|
|
25
25
|
author="Alejandro Rivas García",
|
|
26
26
|
author_email="alejandrorivasgarcia@gmail.com",
|
|
27
27
|
keywords=[
|
|
28
|
-
'orange3 add-on','timefeatures','graph','time series','data mining','
|
|
28
|
+
'orange3 add-on','timefeatures','graph','time series','data mining','graph visualization','orange','addon'
|
|
29
29
|
],
|
|
30
30
|
url="https://github.com/alervgr/Orange-TimeFeatures",
|
|
31
31
|
license="GPL3+",
|
|
32
32
|
long_description=ABOUT,
|
|
33
33
|
long_description_content_type='text/markdown',
|
|
34
|
-
description="Timefeatures add-on for Orange 3 data mining software
|
|
35
|
-
|
|
34
|
+
description="Timefeatures add-on for Orange 3 data mining software.",
|
|
35
|
+
classifiers=CLASSIFIERS,
|
|
36
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|