-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1023 Bytes
/
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
# Copyright (c) 2021. Lucas G. S. Jeub
from setuptools import setup, find_packages
setup(
name='local2global_embedding',
description='',
url='https://github.com/LJeub/Local2Global_embedding.git',
use_scm_version=True,
setup_requires=['setuptools-scm'],
author='Lucas G. S. Jeub',
python_requires='>=3.5',
packages=find_packages(),
install_requires=[
'matplotlib',
'networkx',
'python-louvain',
'torch >= 1.8',
'torch-geometric >= 1.7',
'torch-scatter',
'torch-sparse',
'torch-cluster',
'torch-spline-conv',
'scikit-learn',
'pymetis',
'local2global @ git+https://github.com/LJeub/Local2Global.git@master',
'filelock',
'docstring-parser',
'tqdm >= 4.62',
'atomicwrites >= 1.4',
'dask >= 2021.9.1',
'enlighten >= 1.10',
'hyperopt',
'numba',
'pandas',
'datashader',
'umap',
'seaborn',
],
)