-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
setup.py
67 lines (58 loc) · 1.52 KB
/
setup.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import find_packages, setup
install_requires = [
"numpy>=1.22.0",
"networkx>=3.3",
"decorator==5.1.*",
"pandas>=1.2.0",
"gensim>=4.0.0",
"tqdm",
"python-louvain",
"scikit-learn",
"scipy<1.13",
"pygsp",
"six",
"python-Levenshtein"
]
setup_requires = ["pytest-runner"]
tests_require = ["pytest", "pytest-cov", "mock"]
keywords = [
"community",
"detection",
"networkx",
"graph",
"clustering",
"embedding",
"deepwalk",
"graph2vec",
"node2vec",
"deep",
"node-embedding",
"graph-embedding",
"learning",
"louvain",
"machine-learning",
"deep-learning",
"deeplearning",
]
setup(
name="karateclub",
packages=find_packages(),
version="1.3.4",
license="GPLv3",
description="A general purpose library for community detection, network embedding, and graph mining research.",
author="Benedek Rozemberczki",
author_email="[email protected]",
url="https://github.com/benedekrozemberczki/karateclub",
download_url="https://github.com/benedekrozemberczki/karateclub/archive/v_10304.tar.gz",
keywords=keywords,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
)