-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
66 lines (57 loc) · 1.56 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
import os
from setuptools import find_packages, setup
on_rtd = os.environ.get("READTHEDOCS") == "True"
install_requires = [
"cmake>=3.26",
"Cython>=0.29",
"decorator>=5.1",
"networkx>=3.1",
"numpy>=1.21",
"pandas<2.0",
"python-louvain>=0.16",
"six",
"scipy>=1.10.0",
"tqdm",
]
if not on_rtd:
install_requires.append("networkit>=10.1")
setup_requires = ["cython", "numpy", "pytest-runner"]
tests_require = ["pytest", "pytest-cov", "mock", "unittest"]
keywords = [
"community",
"detection",
"networkx",
"graph",
"snow ball",
"metropolis hastings",
"shortest path",
"loop erased",
"spiky ball",
"graph sampling",
"sampling",
"tree sampling",
"random walk",
"forest fire",
]
setup(
name="littleballoffur",
version="2.3.1",
license="MIT",
description="A general purpose library for subsampling graphs.",
author="Benedek Rozemberczki",
author_email="[email protected]",
url="https://github.com/benedekrozemberczki/littleballoffur",
download_url="https://github.com/benedekrozemberczki/littleballoffur/archive/v_2.3.1.tar.gz",
keywords=keywords,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)