c4dynamics 2.3.1__tar.gz → 2.3.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.
- c4dynamics-2.3.2/CLASSIFIERS.txt +6 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/PKG-INFO +15 -8
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/__init__.py +1 -1
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics.egg-info/PKG-INFO +15 -8
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics.egg-info/SOURCES.txt +1 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics.egg-info/requires.txt +6 -6
- c4dynamics-2.3.2/pyproject.toml +39 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/setup.py +10 -19
- c4dynamics-2.3.1/pyproject.toml +0 -35
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/LICENSE +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/README.md +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/datasets/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/datasets/_manager.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/datasets/_registry.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/detectors/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/detectors/yolo3_opencv.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/envs/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/envs/mountain_car.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/eqm/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/eqm/derivs.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/eqm/integrate.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/filters/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/filters/ekf.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/filters/kalman.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/filters/lowpass.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/rotmat/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/rotmat/animate.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/rotmat/rotmat.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/sensors/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/sensors/lineofsight.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/sensors/radar.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/sensors/seeker.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/lib/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/lib/datapoint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/lib/pixelpoint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/lib/rigidbody.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/states/state.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/__init__.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/_struct.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/const.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/cprint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/gen_gif.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/idx2keys.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/images_loader.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/math.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/plottools.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/plottracks.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/printpts.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/slides_gen.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/tictoc.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/video_gen.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics/utils/vidgen.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics.egg-info/dependency_links.txt +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/c4dynamics.egg-info/top_level.txt +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/setup.cfg +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_animate.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_const.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_cprint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_datapoint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_datasets.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_derivs.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_ekf.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_gen_gif.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_integrate.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_kalman.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_lowpass.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_math.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_pixelpoint.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_plotdefaults.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_radar.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_rigidbody.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_rotmat.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_seeker.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_state.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_state_assignment.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_state_assignment_strict.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_tictoc.py +0 -0
- {c4dynamics-2.3.1 → c4dynamics-2.3.2}/tests/test_yolov3_opencv.py +0 -0
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: c4dynamics
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Python framework for state-space modeling and algorithm development
|
|
5
5
|
Author: c4dynamics
|
|
6
6
|
Author-email: Ziv Meri <zivmeri@gmail.com>
|
|
7
|
-
License: MIT
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: python,state-space,dynamics,physics,algorithms,computer vision,navigation,guidance,slam,vslam,image processing,signal processing,control
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Operating System :: Unix
|
|
13
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
14
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
8
15
|
Requires-Python: >=3.8,<3.13
|
|
9
16
|
Description-Content-Type: text/markdown
|
|
10
17
|
License-File: LICENSE
|
|
11
18
|
Requires-Dist: imageio>=2.37.0
|
|
12
|
-
Requires-Dist: matplotlib>=3.
|
|
13
|
-
Requires-Dist: natsort>=8.
|
|
14
|
-
Requires-Dist: numpy>=
|
|
19
|
+
Requires-Dist: matplotlib>=3.9.2
|
|
20
|
+
Requires-Dist: natsort>=8.3.1
|
|
21
|
+
Requires-Dist: numpy>=1.26.0
|
|
15
22
|
Requires-Dist: opencv-python>=4.11.0.86
|
|
16
|
-
Requires-Dist: pooch>=1.8.
|
|
17
|
-
Requires-Dist: scipy>=1.
|
|
23
|
+
Requires-Dist: pooch>=1.8.0
|
|
24
|
+
Requires-Dist: scipy>=1.13.0
|
|
18
25
|
Provides-Extra: dev
|
|
19
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
26
|
+
Requires-Dist: nbsphinx>=0.9.3; extra == "dev"
|
|
20
27
|
Requires-Dist: Sphinx>=8.1.3; extra == "dev"
|
|
21
28
|
Requires-Dist: sphinx-book-theme>=1.1.4; extra == "dev"
|
|
22
29
|
Requires-Dist: sphinx_design>=0.6.1; extra == "dev"
|
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: c4dynamics
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Python framework for state-space modeling and algorithm development
|
|
5
5
|
Author: c4dynamics
|
|
6
6
|
Author-email: Ziv Meri <zivmeri@gmail.com>
|
|
7
|
-
License: MIT
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: python,state-space,dynamics,physics,algorithms,computer vision,navigation,guidance,slam,vslam,image processing,signal processing,control
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Operating System :: Unix
|
|
13
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
14
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
8
15
|
Requires-Python: >=3.8,<3.13
|
|
9
16
|
Description-Content-Type: text/markdown
|
|
10
17
|
License-File: LICENSE
|
|
11
18
|
Requires-Dist: imageio>=2.37.0
|
|
12
|
-
Requires-Dist: matplotlib>=3.
|
|
13
|
-
Requires-Dist: natsort>=8.
|
|
14
|
-
Requires-Dist: numpy>=
|
|
19
|
+
Requires-Dist: matplotlib>=3.9.2
|
|
20
|
+
Requires-Dist: natsort>=8.3.1
|
|
21
|
+
Requires-Dist: numpy>=1.26.0
|
|
15
22
|
Requires-Dist: opencv-python>=4.11.0.86
|
|
16
|
-
Requires-Dist: pooch>=1.8.
|
|
17
|
-
Requires-Dist: scipy>=1.
|
|
23
|
+
Requires-Dist: pooch>=1.8.0
|
|
24
|
+
Requires-Dist: scipy>=1.13.0
|
|
18
25
|
Provides-Extra: dev
|
|
19
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
26
|
+
Requires-Dist: nbsphinx>=0.9.3; extra == "dev"
|
|
20
27
|
Requires-Dist: Sphinx>=8.1.3; extra == "dev"
|
|
21
28
|
Requires-Dist: sphinx-book-theme>=1.1.4; extra == "dev"
|
|
22
29
|
Requires-Dist: sphinx_design>=0.6.1; extra == "dev"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
imageio>=2.37.0
|
|
2
|
-
matplotlib>=3.
|
|
3
|
-
natsort>=8.
|
|
4
|
-
numpy>=
|
|
2
|
+
matplotlib>=3.9.2
|
|
3
|
+
natsort>=8.3.1
|
|
4
|
+
numpy>=1.26.0
|
|
5
5
|
opencv-python>=4.11.0.86
|
|
6
|
-
pooch>=1.8.
|
|
7
|
-
scipy>=1.
|
|
6
|
+
pooch>=1.8.0
|
|
7
|
+
scipy>=1.13.0
|
|
8
8
|
|
|
9
9
|
[dev]
|
|
10
|
-
nbsphinx>=0.9.
|
|
10
|
+
nbsphinx>=0.9.3
|
|
11
11
|
Sphinx>=8.1.3
|
|
12
12
|
sphinx-book-theme>=1.1.4
|
|
13
13
|
sphinx_design>=0.6.1
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=80.9.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "c4dynamics"
|
|
7
|
+
version = "2.3.2"
|
|
8
|
+
description = "Python framework for state-space modeling and algorithm development"
|
|
9
|
+
authors = [{name = "Ziv Meri", email="zivmeri@gmail.com"}]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.8, <3.13"
|
|
12
|
+
license = "MIT"
|
|
13
|
+
license-files = ["LICENSE"]
|
|
14
|
+
dependencies = [
|
|
15
|
+
"imageio>=2.37.0",
|
|
16
|
+
"matplotlib>=3.9.2",
|
|
17
|
+
"natsort>=8.3.1",
|
|
18
|
+
"numpy>=1.26.0",
|
|
19
|
+
"opencv-python>=4.11.0.86",
|
|
20
|
+
"pooch>=1.8.0",
|
|
21
|
+
"scipy>=1.13.0"
|
|
22
|
+
]
|
|
23
|
+
keywords = ['python', 'state-space', 'dynamics', 'physics', 'algorithms', 'computer vision', 'navigation', 'guidance', 'slam', 'vslam', 'image processing', 'signal processing', 'control']
|
|
24
|
+
dynamic = ["classifiers"]
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.dynamic]
|
|
27
|
+
classifiers = { file = "CLASSIFIERS.txt" }
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# Optional / development dependencies
|
|
31
|
+
[project.optional-dependencies]
|
|
32
|
+
dev = [
|
|
33
|
+
"nbsphinx>=0.9.3",
|
|
34
|
+
"Sphinx>=8.1.3",
|
|
35
|
+
"sphinx-book-theme>=1.1.4",
|
|
36
|
+
"sphinx_design>=0.6.1"
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
|
|
@@ -10,22 +10,23 @@ with codecs.open(os.path.join(here, 'README.md'), encoding = 'utf-8') as fh:
|
|
|
10
10
|
long_description = '\n' + fh.read()
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
import c4dynamics
|
|
13
|
+
# import c4dynamics
|
|
14
14
|
|
|
15
|
-
VERSION = c4dynamics.__version__
|
|
15
|
+
# VERSION = c4dynamics.__version__
|
|
16
|
+
VERSION = "2.3.2" # change also in __init__.py and pyproject.toml
|
|
16
17
|
print(VERSION)
|
|
17
18
|
print('did u remember to upgrade the version number??')
|
|
18
19
|
|
|
19
|
-
DESCRIPTION = '
|
|
20
|
-
LONG_DESCRIPTION = 'Tsipor (bird) Dynamics (c4dynamics) is
|
|
20
|
+
DESCRIPTION = 'Python framework for state-space modeling.'
|
|
21
|
+
LONG_DESCRIPTION = 'Tsipor (bird) Dynamics (c4dynamics) is The Python framework for state-space modeling and algorithm development.'
|
|
21
22
|
|
|
22
23
|
required_packages = []
|
|
23
24
|
|
|
24
|
-
with open(os.path.join(here, 'requirements.txt'), 'r') as file:
|
|
25
|
-
for line in file:
|
|
26
|
-
line = line.strip() # Remove leading and trailing whitespaces
|
|
27
|
-
if not line.startswith('#'):
|
|
28
|
-
required_packages.append(line)
|
|
25
|
+
# with open(os.path.join(here, 'requirements.txt'), 'r') as file:
|
|
26
|
+
# for line in file:
|
|
27
|
+
# line = line.strip() # Remove leading and trailing whitespaces
|
|
28
|
+
# if not line.startswith('#'):
|
|
29
|
+
# required_packages.append(line)
|
|
29
30
|
|
|
30
31
|
|
|
31
32
|
# Now, lines_to_append contains all lines from the file that don't start with a hash
|
|
@@ -52,16 +53,6 @@ setup(
|
|
|
52
53
|
# , exclude_package_data = {package: ['src/main/resources/*.*']}
|
|
53
54
|
, install_requires = required_packages
|
|
54
55
|
, python_requires = ">=3.8,<3.13" # update also in run-tests.yml, readme.md, pyproject.yaml, setup_guide.ipynb
|
|
55
|
-
, keywords = ['python', 'dynamics', 'physics'
|
|
56
|
-
, 'algorithms', 'computer vision'
|
|
57
|
-
, 'navigation', 'guidance', 'slam'
|
|
58
|
-
, 'vslam', 'image processing', 'signal processing', 'control']
|
|
59
|
-
, classifiers = ['Development Status :: 5 - Production/Stable'
|
|
60
|
-
, 'Intended Audience :: Developers'
|
|
61
|
-
, 'Programming Language :: Python :: 3'
|
|
62
|
-
, 'Operating System :: Unix'
|
|
63
|
-
, 'Operating System :: MacOS :: MacOS X'
|
|
64
|
-
, 'Operating System :: Microsoft :: Windows']
|
|
65
56
|
)
|
|
66
57
|
|
|
67
58
|
|
c4dynamics-2.3.1/pyproject.toml
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=80.9.0", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "c4dynamics"
|
|
7
|
-
version = "2.3.1"
|
|
8
|
-
description = "Python framework for state-space modeling and algorithm development"
|
|
9
|
-
authors = [
|
|
10
|
-
{name = "Ziv Meri", email="zivmeri@gmail.com"}
|
|
11
|
-
]
|
|
12
|
-
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.8, <3.13"
|
|
14
|
-
license = {text="MIT"}
|
|
15
|
-
|
|
16
|
-
dependencies = [
|
|
17
|
-
"imageio>=2.37.0",
|
|
18
|
-
"matplotlib>=3.10.3",
|
|
19
|
-
"natsort>=8.4.0",
|
|
20
|
-
"numpy>=2.3.1",
|
|
21
|
-
"opencv-python>=4.11.0.86",
|
|
22
|
-
"pooch>=1.8.2",
|
|
23
|
-
"scipy>=1.16.0"
|
|
24
|
-
]
|
|
25
|
-
|
|
26
|
-
# Optional / development dependencies
|
|
27
|
-
[project.optional-dependencies]
|
|
28
|
-
dev = [
|
|
29
|
-
"nbsphinx>=0.9.7",
|
|
30
|
-
"Sphinx>=8.1.3",
|
|
31
|
-
"sphinx-book-theme>=1.1.4",
|
|
32
|
-
"sphinx_design>=0.6.1"
|
|
33
|
-
]
|
|
34
|
-
|
|
35
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|