-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
49 lines (48 loc) · 1.64 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
from setuptools import setup
setup(
name='GNNSubNet',
packages=['GNNSubNet'],
version='0.2.0',
author="Bastian Pfeifer",
author_email="[email protected]",
description='Disease Subnetwork Detection with Explainable Graph Neural Networks',
long_description='Disease Subnetwork Detection with Explainable Graph Neural Networks',
license='MIT',
url='https://github.com/pievos101/GNN-SubNet',
keywords=['graph-neural-networks', 'disease-networks', 'explainable-ai'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'torch',
'torch-scatter',
'torch-sparse',
'tqdm',
'numpy',
'igraph',
'scipy',
'scikit-learn',
'pandas',
'requests',
'networkx',
'torch-geometric',
'matplotlib',
'wheel',
'dgl',
'torchvision'
],
include_package_data=True, # Alternatively add files to MANIFEST.in
package_data={'': ['datasets/synthetic/*.txt']}
)