-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 729 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup, find_packages
setup(
name='cody',
version='1.0.0',
description='Counterfactual Explanations for Deep Graph Models on Dynamic Graphs',
author='Daniel Gomm',
author_email='daniel.gomm@cwi.nl',
url='https://github.com/daniel-gomm/CoDy',
keywords='explanation, gnn, tgnn, counterfactual, temporal graph neural network, dynamic graph',
packages=find_packages(),
install_requires=[
'numpy==1.25.2',
'pandas==2.0.1',
'torch==2.0.1',
'tqdm==4.65.0',
'ipython',
'pyarrow',
f"TGN @ file://localhost/{os.getcwd()}/submodules/tgn/",
f"TTGN @ file://localhost/{os.getcwd()}/submodules/ttgn/"
]
)