10 lines
216 B
Python
10 lines
216 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="scgnn",
|
||
|
version="0.1",
|
||
|
description="Official implementation of ScoreCAM GNN for explaining graph neural networks",
|
||
|
packages=["scgnn"],
|
||
|
zip_safe=False,
|
||
|
)
|