opfython 1.0.15__tar.gz → 2.0.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.
Files changed (32) hide show
  1. {opfython-1.0.15 → opfython-2.0.0}/PKG-INFO +11 -21
  2. {opfython-1.0.15 → opfython-2.0.0}/README.md +1 -1
  3. {opfython-1.0.15 → opfython-2.0.0}/opfython/__init__.py +1 -1
  4. opfython-2.0.0/pyproject.toml +64 -0
  5. opfython-1.0.15/pyproject.toml +0 -76
  6. {opfython-1.0.15 → opfython-2.0.0}/LICENSE +0 -0
  7. {opfython-1.0.15 → opfython-2.0.0}/opfython/core/__init__.py +0 -0
  8. {opfython-1.0.15 → opfython-2.0.0}/opfython/core/heap.py +0 -0
  9. {opfython-1.0.15 → opfython-2.0.0}/opfython/core/node.py +0 -0
  10. {opfython-1.0.15 → opfython-2.0.0}/opfython/core/opf.py +0 -0
  11. {opfython-1.0.15 → opfython-2.0.0}/opfython/core/subgraph.py +0 -0
  12. {opfython-1.0.15 → opfython-2.0.0}/opfython/math/__init__.py +0 -0
  13. {opfython-1.0.15 → opfython-2.0.0}/opfython/math/distance.py +0 -0
  14. {opfython-1.0.15 → opfython-2.0.0}/opfython/math/general.py +0 -0
  15. {opfython-1.0.15 → opfython-2.0.0}/opfython/math/random.py +0 -0
  16. {opfython-1.0.15 → opfython-2.0.0}/opfython/models/__init__.py +0 -0
  17. {opfython-1.0.15 → opfython-2.0.0}/opfython/models/knn_supervised.py +0 -0
  18. {opfython-1.0.15 → opfython-2.0.0}/opfython/models/semi_supervised.py +0 -0
  19. {opfython-1.0.15 → opfython-2.0.0}/opfython/models/supervised.py +0 -0
  20. {opfython-1.0.15 → opfython-2.0.0}/opfython/models/unsupervised.py +0 -0
  21. {opfython-1.0.15 → opfython-2.0.0}/opfython/stream/__init__.py +0 -0
  22. {opfython-1.0.15 → opfython-2.0.0}/opfython/stream/loader.py +0 -0
  23. {opfython-1.0.15 → opfython-2.0.0}/opfython/stream/parser.py +0 -0
  24. {opfython-1.0.15 → opfython-2.0.0}/opfython/stream/splitter.py +0 -0
  25. {opfython-1.0.15 → opfython-2.0.0}/opfython/subgraphs/__init__.py +0 -0
  26. {opfython-1.0.15 → opfython-2.0.0}/opfython/subgraphs/knn.py +0 -0
  27. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/__init__.py +0 -0
  28. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/constants.py +0 -0
  29. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/converter.py +0 -0
  30. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/decorator.py +0 -0
  31. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/exception.py +0 -0
  32. {opfython-1.0.15 → opfython-2.0.0}/opfython/utils/logging.py +0 -0
@@ -1,42 +1,32 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.5
2
2
  Name: opfython
3
- Version: 1.0.15
3
+ Version: 2.0.0
4
4
  Summary: Python-Inspired Optimum-Path Forest Classifier
5
5
  Author-email: Gustavo Rosa <gustavo.rosa@unesp.br>
6
- Requires-Python: >=3.6.1
6
+ Requires-Python: >=3.11
7
7
  Description-Content-Type: text/markdown
8
8
  Classifier: Development Status :: 5 - Production/Stable
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: Intended Audience :: Education
11
11
  Classifier: Intended Audience :: Science/Research
12
12
  Classifier: License :: OSI Approved :: Apache Software License
13
- Classifier: Programming Language :: Python :: 3.6
14
- Classifier: Programming Language :: Python :: 3.7
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3 :: Only
18
14
  Classifier: Programming Language :: Python :: 3.11
19
15
  Classifier: Programming Language :: Python :: 3.12
20
16
  Classifier: Programming Language :: Python :: 3.13
21
17
  Classifier: Topic :: Software Development :: Libraries
22
18
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
19
  License-File: LICENSE
24
- Requires-Dist: numba>=0.53.0; python_version < '3.11'
25
- Requires-Dist: numba>=0.67.0; python_version >= '3.11'
26
- Requires-Dist: numpy>=1.19.5; python_version < '3.11'
27
- Requires-Dist: numpy>=2.4.4; python_version >= '3.11'
28
- Requires-Dist: coverage>=5.5 ; extra == "tests"
29
- Requires-Dist: pre-commit>=2.17.0 ; extra == "tests"
30
- Requires-Dist: pylint>=2.7.2 ; extra == "tests" and ( python_version < '3.10')
31
- Requires-Dist: pylint>=4.0.7 ; extra == "tests" and ( python_version >= '3.10')
32
- Requires-Dist: pytest>=3.5,<5 ; extra == "tests" and ( python_version < '3.10')
33
- Requires-Dist: pytest>=7,<9,!=8.1.* ; extra == "tests" and ( python_version >= '3.10')
34
- Requires-Dist: pytest-flake8>=1.3 ; extra == "tests" and ( python_version >= '3.10')
35
- Requires-Dist: pytest-pep8>=1.0.6 ; extra == "tests" and ( python_version < '3.10')
20
+ Requires-Dist: numba>=0.67.0
21
+ Requires-Dist: numpy>=2.4.4
22
+ Requires-Dist: coverage>=7.10.0 ; extra == "tests"
23
+ Requires-Dist: flake8>=7.3.0 ; extra == "tests"
24
+ Requires-Dist: pytest>=9.0.0 ; extra == "tests"
36
25
  Project-URL: Documentation, https://opfython.readthedocs.io
37
26
  Project-URL: Homepage, https://github.com/gugarosa/opfython
38
27
  Project-URL: Issues, https://github.com/gugarosa/opfython/issues
39
28
  Provides-Extra: tests
29
+ Import-Name: opfython
40
30
 
41
31
  # OPFython
42
32
 
@@ -54,7 +44,7 @@ This implementation follows [LibOPF](https://github.com/jppbsi/LibOPF).
54
44
  Please cite the original LibOPF authors as well as OPFython when using it in
55
45
  research.
56
46
 
57
- OPFython requires Python 3.6.1 or newer.
47
+ OPFython requires Python 3.11 or newer.
58
48
 
59
49
  ## Installation
60
50
 
@@ -14,7 +14,7 @@ This implementation follows [LibOPF](https://github.com/jppbsi/LibOPF).
14
14
  Please cite the original LibOPF authors as well as OPFython when using it in
15
15
  research.
16
16
 
17
- OPFython requires Python 3.6.1 or newer.
17
+ OPFython requires Python 3.11 or newer.
18
18
 
19
19
  ## Installation
20
20
 
@@ -2,4 +2,4 @@
2
2
  of several modules and sub-modules.
3
3
  """
4
4
 
5
- __version__ = "1.0.15"
5
+ __version__ = "2.0.0"
@@ -0,0 +1,64 @@
1
+ [build-system]
2
+ requires = ["flit_core>=3.4,<5"]
3
+ build-backend = "flit_core.buildapi"
4
+
5
+ [project]
6
+ name = "opfython"
7
+ version = "2.0.0"
8
+ description = "Python-Inspired Optimum-Path Forest Classifier"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { file = "LICENSE" }
12
+ authors = [
13
+ { name = "Gustavo Rosa", email = "gustavo.rosa@unesp.br" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 5 - Production/Stable",
17
+ "Intended Audience :: Developers",
18
+ "Intended Audience :: Education",
19
+ "Intended Audience :: Science/Research",
20
+ "License :: OSI Approved :: Apache Software License",
21
+ "Programming Language :: Python :: 3 :: Only",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Topic :: Software Development :: Libraries",
26
+ "Topic :: Software Development :: Libraries :: Python Modules",
27
+ ]
28
+ dependencies = [
29
+ "numba>=0.67.0",
30
+ "numpy>=2.4.4",
31
+ ]
32
+
33
+ [project.optional-dependencies]
34
+ tests = [
35
+ "coverage>=7.10.0",
36
+ "flake8>=7.3.0",
37
+ "pytest>=9.0.0",
38
+ ]
39
+
40
+ [project.urls]
41
+ Documentation = "https://opfython.readthedocs.io"
42
+ Homepage = "https://github.com/gugarosa/opfython"
43
+ Issues = "https://github.com/gugarosa/opfython/issues"
44
+
45
+ [dependency-groups]
46
+ dev = [
47
+ "pre-commit>=4.3.0",
48
+ "pytest>=9.0.0",
49
+ ]
50
+ docs = [
51
+ "sphinx>=8.2.3,<9",
52
+ ]
53
+
54
+ [tool.black]
55
+ line-length = 88
56
+ target-version = ["py311"]
57
+
58
+ [tool.isort]
59
+ profile = "black"
60
+
61
+ [tool.pytest.ini_options]
62
+ addopts = ["-v", "--durations=10"]
63
+ norecursedirs = ["build", "dist"]
64
+ testpaths = ["tests"]
@@ -1,76 +0,0 @@
1
- [build-system]
2
- requires = ["flit_core>=3.4,<4"]
3
- build-backend = "flit_core.buildapi"
4
-
5
- [project]
6
- name = "opfython"
7
- version = "1.0.15"
8
- description = "Python-Inspired Optimum-Path Forest Classifier"
9
- readme = "README.md"
10
- requires-python = ">=3.6.1"
11
- license = { file = "LICENSE" }
12
- authors = [
13
- { name = "Gustavo Rosa", email = "gustavo.rosa@unesp.br" },
14
- ]
15
- classifiers = [
16
- "Development Status :: 5 - Production/Stable",
17
- "Intended Audience :: Developers",
18
- "Intended Audience :: Education",
19
- "Intended Audience :: Science/Research",
20
- "License :: OSI Approved :: Apache Software License",
21
- "Programming Language :: Python :: 3.6",
22
- "Programming Language :: Python :: 3.7",
23
- "Programming Language :: Python :: 3.8",
24
- "Programming Language :: Python :: 3.9",
25
- "Programming Language :: Python :: 3.10",
26
- "Programming Language :: Python :: 3.11",
27
- "Programming Language :: Python :: 3.12",
28
- "Programming Language :: Python :: 3.13",
29
- "Topic :: Software Development :: Libraries",
30
- "Topic :: Software Development :: Libraries :: Python Modules",
31
- ]
32
- dependencies = [
33
- "numba>=0.53.0; python_version < '3.11'",
34
- "numba>=0.67.0; python_version >= '3.11'",
35
- "numpy>=1.19.5; python_version < '3.11'",
36
- "numpy>=2.4.4; python_version >= '3.11'",
37
- ]
38
-
39
- [project.optional-dependencies]
40
- tests = [
41
- "coverage>=5.5",
42
- "pre-commit>=2.17.0",
43
- "pylint>=2.7.2; python_version < '3.10'",
44
- "pylint>=4.0.7; python_version >= '3.10'",
45
- "pytest>=3.5,<5; python_version < '3.10'",
46
- "pytest>=7,<9,!=8.1.*; python_version >= '3.10'",
47
- "pytest-flake8>=1.3; python_version >= '3.10'",
48
- "pytest-pep8>=1.0.6; python_version < '3.10'",
49
- ]
50
-
51
- [project.urls]
52
- Documentation = "https://opfython.readthedocs.io"
53
- Homepage = "https://github.com/gugarosa/opfython"
54
- Issues = "https://github.com/gugarosa/opfython/issues"
55
-
56
- [dependency-groups]
57
- dev = [
58
- "coverage>=5.5",
59
- "pre-commit>=2.17.0",
60
- "pylint>=2.7.2; python_version < '3.10'",
61
- "pylint>=4.0.7; python_version >= '3.10'",
62
- "pytest>=3.5,<5; python_version < '3.10'",
63
- "pytest>=7,<9,!=8.1.*; python_version >= '3.10'",
64
- "pytest-flake8>=1.3; python_version >= '3.10'",
65
- "pytest-pep8>=1.0.6; python_version < '3.10'",
66
- ]
67
- docs = [
68
- "sphinx>=3.1,<9.1",
69
- ]
70
-
71
- [tool.black]
72
- line-length = 88
73
- target-version = ["py36"]
74
-
75
- [tool.isort]
76
- profile = "black"
File without changes
File without changes