eixgnn/setup.py

10 lines
222 B
Python
Raw Permalink Normal View History

2023-03-06 10:35:30 +00:00
from setuptools import setup
setup(
name="eixgnn",
version="0.1",
description="Official implementation of EiXGNN algorithm for explaining graph neural networks",
packages=["eixgnn"],
zip_safe=False,
)