-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.13 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "netmax"
version = "1.0.1"
authors = [
{ name="Lorenzo Bloise", email="l.bloise@outlook.it" },
{ name="Carmelo Gugliotta", email="carmelo.gugliotta00@gmail.com"}
]
description = "Library for the problem of Influence Maximization in Social Networks"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"networkx==3.3",
"numpy",
"scipy",
"tqdm",
"heapdict",
"pillow",
"pandas"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis"
]
keywords = ["influence-maximization", "network-analysis", "simulator", "complex-networks"]
[project.urls]
Homepage = "https://github.com/lorenzobloise/netmax"
Issues = "https://github.com/lorenzobloise/netmax/issues"
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["netmax*"]
exclude = ["data*", "tests*", "demo*"]