10 lines
222 B
Python
10 lines
222 B
Python
|
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,
|
||
|
)
|