kalbee 0.1.0__tar.gz → 0.1.1__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 (24) hide show
  1. {kalbee-0.1.0 → kalbee-0.1.1}/PKG-INFO +2 -2
  2. {kalbee-0.1.0 → kalbee-0.1.1}/README.md +1 -1
  3. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/__init__.py +1 -1
  4. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/PKG-INFO +2 -2
  5. {kalbee-0.1.0 → kalbee-0.1.1}/pyproject.toml +1 -1
  6. {kalbee-0.1.0 → kalbee-0.1.1}/LICENSE +0 -0
  7. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/__init__.py +0 -0
  8. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/__init__.py +0 -0
  9. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/abg_filter.py +0 -0
  10. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/auto_filter.py +0 -0
  11. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/base.py +0 -0
  12. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/ekf_filter.py +0 -0
  13. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee/modules/filters/kf_filter.py +0 -0
  14. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/SOURCES.txt +0 -0
  15. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/dependency_links.txt +0 -0
  16. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/not-zip-safe +0 -0
  17. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/requires.txt +0 -0
  18. {kalbee-0.1.0 → kalbee-0.1.1}/kalbee.egg-info/top_level.txt +0 -0
  19. {kalbee-0.1.0 → kalbee-0.1.1}/setup.cfg +0 -0
  20. {kalbee-0.1.0 → kalbee-0.1.1}/setup.py +0 -0
  21. {kalbee-0.1.0 → kalbee-0.1.1}/tests/test_abg.py +0 -0
  22. {kalbee-0.1.0 → kalbee-0.1.1}/tests/test_auto.py +0 -0
  23. {kalbee-0.1.0 → kalbee-0.1.1}/tests/test_ekf.py +0 -0
  24. {kalbee-0.1.0 → kalbee-0.1.1}/tests/test_kf.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kalbee
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A clean, modular Python implementation of Kalman Filters and estimation algorithms.
5
5
  Author-email: Le Duc Minh <minh.leduc.0210@gmail.com>
6
6
  Maintainer-email: Le Duc Minh <minh.leduc.0210@gmail.com>
@@ -18,7 +18,7 @@ Requires-Dist: scikit-learn>=1.3.2
18
18
  # kalbee 🐝
19
19
 
20
20
  <div align="center">
21
- <img src="docs/kalbee.png" alt="kalbee logo" width="300"/>
21
+ <img src="https://raw.githubusercontent.com/MinLee0210/kalbee/main/docs/kalbee.png" alt="kalbee logo" width="300"/>
22
22
  </div>
23
23
 
24
24
  <br>
@@ -1,7 +1,7 @@
1
1
  # kalbee 🐝
2
2
 
3
3
  <div align="center">
4
- <img src="docs/kalbee.png" alt="kalbee logo" width="300"/>
4
+ <img src="https://raw.githubusercontent.com/MinLee0210/kalbee/main/docs/kalbee.png" alt="kalbee logo" width="300"/>
5
5
  </div>
6
6
 
7
7
  <br>
@@ -6,7 +6,7 @@ from kalbee.modules.filters import (
6
6
  AutoFilter,
7
7
  )
8
8
 
9
- __version__ = "0.1.0"
9
+ __version__ = "0.1.1"
10
10
 
11
11
  __all__ = [
12
12
  "BaseFilter",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kalbee
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A clean, modular Python implementation of Kalman Filters and estimation algorithms.
5
5
  Author-email: Le Duc Minh <minh.leduc.0210@gmail.com>
6
6
  Maintainer-email: Le Duc Minh <minh.leduc.0210@gmail.com>
@@ -18,7 +18,7 @@ Requires-Dist: scikit-learn>=1.3.2
18
18
  # kalbee 🐝
19
19
 
20
20
  <div align="center">
21
- <img src="docs/kalbee.png" alt="kalbee logo" width="300"/>
21
+ <img src="https://raw.githubusercontent.com/MinLee0210/kalbee/main/docs/kalbee.png" alt="kalbee logo" width="300"/>
22
22
  </div>
23
23
 
24
24
  <br>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kalbee"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "A clean, modular Python implementation of Kalman Filters and estimation algorithms."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes