ialdev-maths 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,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: ialdev-maths
3
+ Version: 0.1.0
4
+ Summary: iad.maths — histograms, geometry, regression
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: ialdev-core
8
+ Requires-Dist: numpy>=1.20.0
9
+ Requires-Dist: pandas>=1.3.0
10
+ Requires-Dist: numba>=0.55.0
11
+ Requires-Dist: scikit-learn>=1.0.0
12
+ Requires-Dist: pytest>=7.0.0 ; extra == "dev"
13
+ Requires-Dist: ialdev-vis ; extra == "dev"
14
+ Provides-Extra: dev
15
+
16
+ # maths
17
+
18
+ Histogram utilities, geometry primitives, and regression helpers extracted from algutils.
19
+
@@ -0,0 +1,3 @@
1
+ # maths
2
+
3
+ Histogram utilities, geometry primitives, and regression helpers extracted from algutils.
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["flit_core>=3.11,<4"]
3
+ build-backend = "flit_core.buildapi"
4
+
5
+ [project]
6
+ name = "ialdev-maths"
7
+ version = "0.1.0"
8
+ description = "iad.maths — histograms, geometry, regression"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ dependencies = [
13
+ "ialdev-core",
14
+ "numpy>=1.20.0",
15
+ "pandas>=1.3.0",
16
+ "numba>=0.55.0",
17
+ "scikit-learn>=1.0.0",
18
+ ]
19
+
20
+ [project.optional-dependencies]
21
+ dev = [
22
+ "pytest>=7.0.0",
23
+ "ialdev-vis",
24
+ ]
25
+
26
+ [tool.flit.module]
27
+ name = "iad.maths"
28
+
29
+ [tool.pytest.ini_options]
30
+ testpaths = ["tests"]
31
+ python_files = ["test_*.py"]
File without changes
@@ -0,0 +1 @@
1
+ from .shapes import *