dragon-ml-toolbox 1.1.3__tar.gz → 1.1.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.

Potentially problematic release.


This version of dragon-ml-toolbox might be problematic. Click here for more details.

Files changed (22) hide show
  1. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/PKG-INFO +6 -1
  2. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/PKG-INFO +6 -1
  3. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -1
  4. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/requires.txt +1 -0
  5. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/pyproject.toml +10 -2
  6. dragon_ml_toolbox-1.1.4/setup.cfg +4 -0
  7. dragon_ml_toolbox-1.1.3/setup.cfg +0 -11
  8. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/README.md +0 -0
  9. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
  10. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
  11. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/MICE_imputation.py +0 -0
  12. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/__init__.py +0 -0
  13. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/data_exploration.py +0 -0
  14. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/datasetmaster.py +0 -0
  15. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/ensemble_learning.py +0 -0
  16. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/handle_excel.py +0 -0
  17. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/logger.py +0 -0
  18. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/particle_swarm_optimization.py +0 -0
  19. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/pytorch_models.py +0 -0
  20. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/trainer.py +0 -0
  21. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/utilities.py +0 -0
  22. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.4}/ml_tools/vision_helpers.py +0 -0
@@ -1,10 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.3
3
+ Version: 1.1.4
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
6
10
  Requires-Python: >=3.9
7
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
8
13
  Provides-Extra: data-exploration
9
14
  Requires-Dist: pandas; extra == "data-exploration"
10
15
  Requires-Dist: numpy; extra == "data-exploration"
@@ -1,10 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.3
3
+ Version: 1.1.4
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
6
10
  Requires-Python: >=3.9
7
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
8
13
  Provides-Extra: data-exploration
9
14
  Requires-Dist: pandas; extra == "data-exploration"
10
15
  Requires-Dist: numpy; extra == "data-exploration"
@@ -1,6 +1,5 @@
1
1
  README.md
2
2
  pyproject.toml
3
- setup.cfg
4
3
  dragon_ml_toolbox.egg-info/PKG-INFO
5
4
  dragon_ml_toolbox.egg-info/SOURCES.txt
6
5
  dragon_ml_toolbox.egg-info/dependency_links.txt
@@ -1,13 +1,21 @@
1
1
  [project]
2
2
  name = "dragon-ml-toolbox"
3
- version = "1.1.3"
3
+ version = "1.1.4"
4
4
  description = "A collection of tools for machine learning projects"
5
5
  authors = [
6
6
  { name = "Karl Loza", email = "luigiloza@gmail.com" }
7
7
  ]
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.9"
10
- dependencies = []
10
+ license = { text = "MIT" }
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Operating System :: OS Independent"
15
+ ]
16
+ dependencies = [
17
+ "numpy"
18
+ ]
11
19
 
12
20
  [project.optional-dependencies]
13
21
  data_exploration = [
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,11 +0,0 @@
1
- [metadata]
2
- license = MIT
3
- classifiers =
4
- Programming Language :: Python :: 3
5
- License :: OSI Approved :: MIT License
6
- Operating System :: OS Independent
7
-
8
- [egg_info]
9
- tag_build =
10
- tag_date = 0
11
-