scorecamgnn/setup.py

10 lines
216 B
Python
Raw Normal View History

2023-03-08 17:59:37 +00:00
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,
)