InfluenceDiffusion 0.0.10__tar.gz → 0.0.11__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 (20) hide show
  1. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion.egg-info/PKG-INFO +4 -3
  2. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion.egg-info/SOURCES.txt +1 -1
  3. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/PKG-INFO +4 -3
  4. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/README.md +23 -4
  5. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/setup.py +3 -2
  6. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/Graph.py +0 -0
  7. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/Trace.py +0 -0
  8. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/__init__.py +0 -0
  9. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/estimation_models/BaseWeightEstimator.py +0 -0
  10. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/estimation_models/EMEstimation.py +0 -0
  11. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/estimation_models/OptimEstimation.py +0 -0
  12. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/estimation_models/__init__.py +0 -0
  13. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/influence_models.py +0 -0
  14. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/utils.py +0 -0
  15. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion/weight_samplers.py +0 -0
  16. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion.egg-info/dependency_links.txt +0 -0
  17. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion.egg-info/requires.txt +0 -0
  18. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/InfluenceDiffusion.egg-info/top_level.txt +0 -0
  19. /influencediffusion-0.0.10/LICENSE.txt → /influencediffusion-0.0.11/LICENSE +0 -0
  20. {influencediffusion-0.0.10 → influencediffusion-0.0.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: InfluenceDiffusion
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: InfluenceDiffusion package
5
5
  Author: Alexander Kagan
6
6
  Author-email: <amkagan@umich.edu>
@@ -11,11 +11,12 @@ Classifier: Programming Language :: Python :: 2
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: MacOS :: MacOS X
13
13
  Classifier: Operating System :: Microsoft :: Windows
14
- License-File: LICENSE.txt
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
15
16
  Requires-Dist: numpy
16
17
  Requires-Dist: scipy
17
18
  Requires-Dist: networkx
18
19
  Requires-Dist: typing
19
20
  Requires-Dist: joblib
20
21
 
21
- in this package, we implement popular network diffusion models and methods for their estimation.
22
+ In this package, we implement popular network diffusion models and methods for their estimation.
@@ -1,4 +1,4 @@
1
- LICENSE.txt
1
+ LICENSE
2
2
  README.md
3
3
  setup.cfg
4
4
  setup.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: InfluenceDiffusion
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: InfluenceDiffusion package
5
5
  Author: Alexander Kagan
6
6
  Author-email: <amkagan@umich.edu>
@@ -11,11 +11,12 @@ Classifier: Programming Language :: Python :: 2
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: MacOS :: MacOS X
13
13
  Classifier: Operating System :: Microsoft :: Windows
14
- License-File: LICENSE.txt
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
15
16
  Requires-Dist: numpy
16
17
  Requires-Dist: scipy
17
18
  Requires-Dist: networkx
18
19
  Requires-Dist: typing
19
20
  Requires-Dist: joblib
20
21
 
21
- in this package, we implement popular network diffusion models and methods for their estimation.
22
+ In this package, we implement popular network diffusion models and methods for their estimation.
@@ -1,7 +1,7 @@
1
- 
1
+
2
2
  # InfluenceDiffusion
3
3
 
4
- InfluenceDiffusion is a Python library that provides instruments for working with influence diffusion models on graphs. In particualr, it contains implementations of
4
+ InfluenceDiffusion is a Python library that provides instruments for working with influence diffusion models on graphs. In particular, it contains implementations of
5
5
  - Popular diffusion models such as Independent Cascade, (General) Linear Threshold, etc.
6
6
  - Methods for estimating parameters of these models
7
7
 
@@ -50,7 +50,26 @@ plt.ylabel("Predicted weights")
50
50
  plt.show()
51
51
  ```
52
52
 
53
-
54
53
  ## License
55
54
 
56
- [MIT](https://choosealicense.com/licenses/mit/)
55
+ MIT License
56
+
57
+ Copyright (c) 2024 Alexander Kagan
58
+
59
+ Permission is hereby granted, free of charge, to any person obtaining a copy
60
+ of this software and associated documentation files (the "Software"), to deal
61
+ in the Software without restriction, including without limitation the rights
62
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
63
+ copies of the Software, and to permit persons to whom the Software is
64
+ furnished to do so, subject to the following conditions:
65
+
66
+ The above copyright notice and this permission notice shall be included in all
67
+ copies or substantial portions of the Software.
68
+
69
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
70
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
72
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
73
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
74
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
75
+ SOFTWARE.
@@ -1,8 +1,8 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- VERSION = '0.0.10'
3
+ VERSION = '0.0.11'
4
4
  DESCRIPTION = 'InfluenceDiffusion package'
5
- LONG_DESCRIPTION = 'in this package, we implement popular network diffusion models and methods for their estimation.'
5
+ LONG_DESCRIPTION = 'In this package, we implement popular network diffusion models and methods for their estimation.'
6
6
 
7
7
  setup(
8
8
  name="InfluenceDiffusion",
@@ -10,6 +10,7 @@ setup(
10
10
  author="Alexander Kagan",
11
11
  author_email="<amkagan@umich.edu>",
12
12
  description=DESCRIPTION,
13
+ long_description_content_type="text/markdown",
13
14
  long_description=LONG_DESCRIPTION,
14
15
  packages=find_packages(),
15
16
  install_requires=["numpy",