-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
26 lines (25 loc) · 993 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
from setuptools import setup
setup(name='inductiveGRL',
version='0.1',
description="the code used in the experimental setup of our paper 'Inductive Graph Representation Learning for Fraud Detection'.",
url='https://github.com/Charlesvandamme/Inductive-Graph-Representation-Learning-for-Fraud-Detection',
download_url='https://github.com/rafaelvanbelle/Inductive-Graph-Representation-Learning-for-Fraud-Detection/releases/download/v0.1/inductiveGRL-0.1.tar.gz',
author='Charles Van Damme',
author_email='[email protected]',
license='MIT',
packages=['inductiveGRL'],
zip_safe=False,
install_requires=['ipynb',
'nbimporter',
'stellargraph',
'networkx',
'pandas',
'numpy',
'scikit-plot',
'matplotlib',
'sklearn',
'xgboost',
'keras',
'tensorflow',
'matlab_kernel',
])