budilnik1919 0.1.0__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.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: budilnik1919
3
+ Version: 0.1.0
4
+ Summary: Study helper with numerical methods reference code for Python notebooks.
5
+ Author-email: жанна <lohozavr@mail.ru>
6
+ Keywords: numerical methods,education,jupyter,notebooks
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Education
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Education
15
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: matplotlib>=3.6
19
+ Requires-Dist: numpy>=1.23
20
+
21
+ # budilnik1919
22
+
23
+ Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
24
+
25
+ ## Установка
26
+
27
+ ```bash
28
+ pip install budilnik1919
29
+ ```
30
+
31
+ ## Использование
32
+
33
+ ```python
34
+ import budilnik1919 as nm
35
+
36
+ nm.help()
37
+ nm.find("ДПФ")
38
+ nm.show("dft")
39
+ ```
40
+
@@ -0,0 +1,20 @@
1
+ # budilnik1919
2
+
3
+ Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
4
+
5
+ ## Установка
6
+
7
+ ```bash
8
+ pip install budilnik1919
9
+ ```
10
+
11
+ ## Использование
12
+
13
+ ```python
14
+ import budilnik1919 as nm
15
+
16
+ nm.help()
17
+ nm.find("ДПФ")
18
+ nm.show("dft")
19
+ ```
20
+
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: budilnik1919
3
+ Version: 0.1.0
4
+ Summary: Study helper with numerical methods reference code for Python notebooks.
5
+ Author-email: жанна <lohozavr@mail.ru>
6
+ Keywords: numerical methods,education,jupyter,notebooks
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Education
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Education
15
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: matplotlib>=3.6
19
+ Requires-Dist: numpy>=1.23
20
+
21
+ # budilnik1919
22
+
23
+ Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
24
+
25
+ ## Установка
26
+
27
+ ```bash
28
+ pip install budilnik1919
29
+ ```
30
+
31
+ ## Использование
32
+
33
+ ```python
34
+ import budilnik1919 as nm
35
+
36
+ nm.help()
37
+ nm.find("ДПФ")
38
+ nm.show("dft")
39
+ ```
40
+
@@ -0,0 +1,9 @@
1
+ README.md
2
+ budilnik1919.py
3
+ numerical_methods_study.py
4
+ pyproject.toml
5
+ budilnik1919.egg-info/PKG-INFO
6
+ budilnik1919.egg-info/SOURCES.txt
7
+ budilnik1919.egg-info/dependency_links.txt
8
+ budilnik1919.egg-info/requires.txt
9
+ budilnik1919.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ matplotlib>=3.6
2
+ numpy>=1.23
@@ -0,0 +1,2 @@
1
+ budilnik1919
2
+ numerical_methods_study
@@ -0,0 +1,4 @@
1
+ """Public import module for the budilnik1919 PyPI package."""
2
+
3
+ from numerical_methods_study import * # noqa: F403
4
+