modularitypruning 1.4.1__tar.gz → 1.5.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 (30) hide show
  1. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/PKG-INFO +9 -7
  2. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/modularitypruning.egg-info/PKG-INFO +9 -7
  3. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/modularitypruning.egg-info/SOURCES.txt +1 -1
  4. modularitypruning-1.5.0/pyproject.toml +47 -0
  5. modularitypruning-1.4.1/setup.py +0 -39
  6. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/LICENSE +0 -0
  7. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/README.md +0 -0
  8. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/modularitypruning.egg-info/dependency_links.txt +0 -0
  9. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/modularitypruning.egg-info/requires.txt +0 -0
  10. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/modularitypruning.egg-info/top_level.txt +0 -0
  11. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/setup.cfg +0 -0
  12. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_champ_coefficients_2D.py +0 -0
  13. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_champ_coefficients_3D.py +0 -0
  14. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_champ_usage_2D.py +0 -0
  15. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_champ_usage_3D.py +0 -0
  16. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_deprecated_louvain_names.py +0 -0
  17. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_documentation_examples.py +0 -0
  18. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_monolayer_parameter_estimation.py +0 -0
  19. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_multiplex_parameter_estimation.py +0 -0
  20. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_parallel_leiden_performance.py +0 -0
  21. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/tests/test_temporal_multilevel_parameter_estimation.py +0 -0
  22. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/__init__.py +0 -0
  23. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/champ_utilities.py +0 -0
  24. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/leiden_utilities.py +0 -0
  25. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/louvain_utilities.py +0 -0
  26. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/parameter_estimation.py +0 -0
  27. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/parameter_estimation_utilities.py +0 -0
  28. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/partition_utilities.py +0 -0
  29. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/plotting.py +0 -0
  30. {modularitypruning-1.4.1 → modularitypruning-1.5.0}/utilities/progress.py +0 -0
@@ -1,10 +1,9 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: modularitypruning
3
- Version: 1.4.1
4
- Summary: Pruning tool to identify small subsets of network partitions that are significant from the perspective of stochastic block model inference.
5
- Home-page: https://github.com/ragibson/ModularityPruning
6
- Author: Ryan Gibson
7
- Author-email: ryan.alex.gibson@gmail.com
3
+ Version: 1.5.0
4
+ Summary: Pruning tool to identify small subsets of network partitions that are significant from the perspective
5
+ Author-email: Ryan Gibson <ryan.alex.gibson@gmail.com>
6
+ License: MIT
8
7
  Classifier: Development Status :: 5 - Production/Stable
9
8
  Classifier: Topic :: Scientific/Engineering :: Information Analysis
10
9
  Classifier: Programming Language :: Python :: 3
@@ -13,9 +12,11 @@ Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
16
17
  Classifier: Programming Language :: Python :: 3 :: Only
17
18
  Classifier: License :: OSI Approved :: MIT License
18
- Requires-Python: >=3.8, <4
19
+ Requires-Python: >=3.8
19
20
  Description-Content-Type: text/markdown
20
21
  License-File: LICENSE
21
22
  Requires-Dist: leidenalg
@@ -27,6 +28,7 @@ Requires-Dist: scikit-learn
27
28
  Requires-Dist: scipy>=1.7
28
29
  Requires-Dist: seaborn
29
30
  Requires-Dist: tqdm
31
+ Dynamic: license-file
30
32
 
31
33
  # ModularityPruning
32
34
 
@@ -1,10 +1,9 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: modularitypruning
3
- Version: 1.4.1
4
- Summary: Pruning tool to identify small subsets of network partitions that are significant from the perspective of stochastic block model inference.
5
- Home-page: https://github.com/ragibson/ModularityPruning
6
- Author: Ryan Gibson
7
- Author-email: ryan.alex.gibson@gmail.com
3
+ Version: 1.5.0
4
+ Summary: Pruning tool to identify small subsets of network partitions that are significant from the perspective
5
+ Author-email: Ryan Gibson <ryan.alex.gibson@gmail.com>
6
+ License: MIT
8
7
  Classifier: Development Status :: 5 - Production/Stable
9
8
  Classifier: Topic :: Scientific/Engineering :: Information Analysis
10
9
  Classifier: Programming Language :: Python :: 3
@@ -13,9 +12,11 @@ Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
16
17
  Classifier: Programming Language :: Python :: 3 :: Only
17
18
  Classifier: License :: OSI Approved :: MIT License
18
- Requires-Python: >=3.8, <4
19
+ Requires-Python: >=3.8
19
20
  Description-Content-Type: text/markdown
20
21
  License-File: LICENSE
21
22
  Requires-Dist: leidenalg
@@ -27,6 +28,7 @@ Requires-Dist: scikit-learn
27
28
  Requires-Dist: scipy>=1.7
28
29
  Requires-Dist: seaborn
29
30
  Requires-Dist: tqdm
31
+ Dynamic: license-file
30
32
 
31
33
  # ModularityPruning
32
34
 
@@ -1,6 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
- setup.py
3
+ pyproject.toml
4
4
  modularitypruning.egg-info/PKG-INFO
5
5
  modularitypruning.egg-info/SOURCES.txt
6
6
  modularitypruning.egg-info/dependency_links.txt
@@ -0,0 +1,47 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 75.3.2"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "modularitypruning"
7
+ version = "1.5.0"
8
+ description = """Pruning tool to identify small subsets of network partitions that are significant from the perspective
9
+ of stochastic block model inference."""
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ license = { text = "MIT" }
13
+ authors = [
14
+ { name = "Ryan Gibson", email = "ryan.alex.gibson@gmail.com" }
15
+ ]
16
+
17
+ classifiers = [
18
+ "Development Status :: 5 - Production/Stable",
19
+ "Topic :: Scientific/Engineering :: Information Analysis",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Programming Language :: Python :: 3.13",
27
+ "Programming Language :: Python :: 3.14",
28
+ "Programming Language :: Python :: 3 :: Only",
29
+ "License :: OSI Approved :: MIT License"
30
+ ]
31
+ dependencies = [
32
+ "leidenalg",
33
+ "matplotlib",
34
+ "numpy",
35
+ "psutil",
36
+ "igraph",
37
+ "scikit-learn",
38
+ "scipy>=1.7",
39
+ "seaborn",
40
+ "tqdm"
41
+ ]
42
+
43
+ [tool.setuptools]
44
+ packages = ["modularitypruning"]
45
+
46
+ [tool.setuptools.package-dir]
47
+ modularitypruning = "utilities"
@@ -1,39 +0,0 @@
1
- import os
2
-
3
- from setuptools import setup
4
-
5
- here = os.path.abspath(os.path.dirname(__file__))
6
-
7
- # Get the long description from the README file
8
- with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
9
- long_description = f.read()
10
-
11
- setup(
12
- name='modularitypruning',
13
- version='1.4.1',
14
- package_dir={'modularitypruning': 'utilities'},
15
- packages=['modularitypruning'],
16
- url='https://github.com/ragibson/ModularityPruning',
17
- license='',
18
- author='Ryan Gibson',
19
- author_email='ryan.alex.gibson@gmail.com',
20
- description='Pruning tool to identify small subsets of network partitions that are '
21
- 'significant from the perspective of stochastic block model inference.',
22
- long_description=long_description,
23
- long_description_content_type='text/markdown',
24
- classifiers=[
25
- 'Development Status :: 5 - Production/Stable',
26
- 'Topic :: Scientific/Engineering :: Information Analysis',
27
- 'Programming Language :: Python :: 3',
28
- 'Programming Language :: Python :: 3.8',
29
- 'Programming Language :: Python :: 3.9',
30
- 'Programming Language :: Python :: 3.10',
31
- 'Programming Language :: Python :: 3.11',
32
- 'Programming Language :: Python :: 3.12',
33
- 'Programming Language :: Python :: 3 :: Only',
34
- 'License :: OSI Approved :: MIT License'
35
- ],
36
- python_requires='>=3.8, <4',
37
- install_requires=['leidenalg', 'matplotlib', "numpy", 'psutil', 'igraph',
38
- "scikit-learn", "scipy>=1.7", 'seaborn', 'tqdm']
39
- )