forked from barahona-research-group/PyGenStability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (62 loc) · 1.94 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
"""Setup."""
from pybind11.setup_helpers import Pybind11Extension
from setuptools import find_namespace_packages
from setuptools import setup
__version__ = "0.2.3"
ext_modules = [
Pybind11Extension(
"pygenstability.generalized_louvain",
["src/pygenstability/generalized_louvain/generalized_louvain.cpp"],
include_dirs=["extra", "generalizedLouvain"],
extra_compile_args=["-std=c++11"],
optional=True,
),
]
plotly_require = ["plotly>=3.6.0"]
test_require = [
"pyyaml",
"dictdiffer",
"pytest",
"pytest-cov",
"pytest-html",
"diff-pdf-visually",
"ipython!=8.7.0", # see https://github.com/spatialaudio/nbsphinx/issues/687
]
install_requires = [
"numpy>=1.18.1",
"scipy>=1.4.1",
"matplotlib>=3.1.3",
"scikit-learn",
"cmake>=3.16.3",
"click>=7.0",
"tqdm>=4.45.0",
"pybind11>=2.10.0",
"pandas>=1.0.0",
"threadpoolctl",
]
leiden_install = ["igraph", "leidenalg"]
networkx_install = ["networkx>=3.0"]
setup(
name="PyGenStability",
version=__version__,
author="Alexis Arnaudon, Dominik Schindler",
author_email="[email protected], [email protected]",
url="https://github.com/ImperialCollegeLondon/PyGenStability",
description="Python binding of generalised Louvain with Markov Stability",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
ext_modules=ext_modules,
setup_requires=["pybind11>=2.10.0"],
install_requires=install_requires,
zip_safe=False,
extras_require={
"plotly": plotly_require,
"leiden": leiden_install,
"networkx": networkx_install,
"all": plotly_require + test_require + leiden_install + networkx_install,
},
entry_points={"console_scripts": ["pygenstability=pygenstability.app:cli"]},
packages=find_namespace_packages("src"),
include_package_data=True,
package_dir={"": "src"},
)