ppapp 1.0.2__tar.gz → 1.0.3__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 (27) hide show
  1. {ppapp-1.0.2/ppapp.egg-info → ppapp-1.0.3}/PKG-INFO +3 -1
  2. {ppapp-1.0.2 → ppapp-1.0.3/ppapp.egg-info}/PKG-INFO +3 -1
  3. {ppapp-1.0.2 → ppapp-1.0.3}/pyproject.toml +3 -1
  4. {ppapp-1.0.2 → ppapp-1.0.3}/LICENSE +0 -0
  5. {ppapp-1.0.2 → ppapp-1.0.3}/MANIFEST.in +0 -0
  6. {ppapp-1.0.2 → ppapp-1.0.3}/README.md +0 -0
  7. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/__init__.py +0 -0
  8. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/__main__.py +0 -0
  9. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/cheb_coeffs.py +0 -0
  10. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/demo_functions/__init__.py +0 -0
  11. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/demo_functions/erfcx.py +0 -0
  12. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/demo_functions/imwofx.py +0 -0
  13. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/demo_functions/polynomial.py +0 -0
  14. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/demo_functions/voigt_hwhm.py +0 -0
  15. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/docs/userManual.pdf +0 -0
  16. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/ppapp.py +0 -0
  17. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp/target_algorithm.py +0 -0
  18. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp.egg-info/SOURCES.txt +0 -0
  19. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp.egg-info/dependency_links.txt +0 -0
  20. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp.egg-info/entry_points.txt +0 -0
  21. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp.egg-info/requires.txt +0 -0
  22. {ppapp-1.0.2 → ppapp-1.0.3}/ppapp.egg-info/top_level.txt +0 -0
  23. {ppapp-1.0.2 → ppapp-1.0.3}/setup.cfg +0 -0
  24. {ppapp-1.0.2 → ppapp-1.0.3}/tests/__init__.py +0 -0
  25. {ppapp-1.0.2 → ppapp-1.0.3}/tests/test_app.py +0 -0
  26. {ppapp-1.0.2 → ppapp-1.0.3}/userManual/userManual.pdf +0 -0
  27. {ppapp-1.0.2 → ppapp-1.0.3}/userManual/userManual.tex +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ppapp
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Piecewise polynomial approximation: code generator for Chebyshev approximation
5
5
  Author-email: Joachim Wuttke <j.wuttke@fz-juelich.de>, Alexander Kleinsorge <alkl9873@th-wildau.de>
6
6
  License: GPL-3.0-or-later
@@ -16,6 +16,8 @@ Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
19
21
  Classifier: Topic :: Scientific/Engineering :: Mathematics
20
22
  Requires-Python: >=3.9
21
23
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ppapp
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Piecewise polynomial approximation: code generator for Chebyshev approximation
5
5
  Author-email: Joachim Wuttke <j.wuttke@fz-juelich.de>, Alexander Kleinsorge <alkl9873@th-wildau.de>
6
6
  License: GPL-3.0-or-later
@@ -16,6 +16,8 @@ Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
19
21
  Classifier: Topic :: Scientific/Engineering :: Mathematics
20
22
  Requires-Python: >=3.9
21
23
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ppapp"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "Piecewise polynomial approximation: code generator for Chebyshev approximation"
9
9
  readme = "README.md"
10
10
  license = {text = "GPL-3.0-or-later"}
@@ -24,6 +24,8 @@ classifiers = [
24
24
  "Programming Language :: Python :: 3.10",
25
25
  "Programming Language :: Python :: 3.11",
26
26
  "Programming Language :: Python :: 3.12",
27
+ "Programming Language :: Python :: 3.13",
28
+ "Programming Language :: Python :: 3.14",
27
29
  "Topic :: Scientific/Engineering :: Mathematics",
28
30
  ]
29
31
  dependencies = [
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