autofuzzts 0.1.1__tar.gz → 0.1.2__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 (30) hide show
  1. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/PKG-INFO +3 -3
  2. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts.egg-info/PKG-INFO +3 -3
  3. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/pyproject.toml +3 -3
  4. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/LICENSE +0 -0
  5. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/README.md +0 -0
  6. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/__init__.py +0 -0
  7. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/config.py +0 -0
  8. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/data/__init__.py +0 -0
  9. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/data/data_loader.py +0 -0
  10. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/data_validation/__init__.py +0 -0
  11. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/data_validation/validate.py +0 -0
  12. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/evaluation/__init__.py +0 -0
  13. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/models/__init__.py +0 -0
  14. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/models/fuzzy_classifier.py +0 -0
  15. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/models/mlp_nas.py +0 -0
  16. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/partition/__init__.py +0 -0
  17. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/partition/fuzzy_clust_fun.py +0 -0
  18. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/partition/fuzzy_clust_fun_orig.py +0 -0
  19. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/partition/partition.py +0 -0
  20. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/partition/visualize_partition.py +0 -0
  21. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/pipeline.py +0 -0
  22. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/preprocess/__init__.py +0 -0
  23. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/preprocess/prep_for_model.py +0 -0
  24. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/preprocess/preprocess.py +0 -0
  25. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts/utils.py +0 -0
  26. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts.egg-info/SOURCES.txt +0 -0
  27. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts.egg-info/dependency_links.txt +0 -0
  28. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts.egg-info/requires.txt +0 -0
  29. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/autofuzzts.egg-info/top_level.txt +0 -0
  30. {autofuzzts-0.1.1 → autofuzzts-0.1.2}/setup.cfg +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autofuzzts
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: 'Time series forecasting using fuzzy logic and AutoML'
5
5
  Author-email: Jan Timko <jantimko16@gmail.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/yourusername/autofuzzts
8
- Project-URL: Repository, https://github.com/yourusername/autofuzzts
7
+ Project-URL: Homepage, https://github.com/jtimko16/AutoFuzzTS
8
+ Project-URL: Repository, https://github.com/jtimko16/AutoFuzzTS
9
9
  Requires-Python: >=3.11
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autofuzzts
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: 'Time series forecasting using fuzzy logic and AutoML'
5
5
  Author-email: Jan Timko <jantimko16@gmail.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/yourusername/autofuzzts
8
- Project-URL: Repository, https://github.com/yourusername/autofuzzts
7
+ Project-URL: Homepage, https://github.com/jtimko16/AutoFuzzTS
8
+ Project-URL: Repository, https://github.com/jtimko16/AutoFuzzTS
9
9
  Requires-Python: >=3.11
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "autofuzzts"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "'Time series forecasting using fuzzy logic and AutoML'"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -29,8 +29,8 @@ dependencies = [
29
29
  ]
30
30
 
31
31
  [project.urls]
32
- Homepage = "https://github.com/yourusername/autofuzzts"
33
- Repository = "https://github.com/yourusername/autofuzzts"
32
+ Homepage = "https://github.com/jtimko16/AutoFuzzTS"
33
+ Repository = "https://github.com/jtimko16/AutoFuzzTS"
34
34
 
35
35
  [tool.setuptools.packages.find]
36
36
  exclude = ["tests*", "notebooks*", "schema*"]
File without changes
File without changes
File without changes