10 lines
247 B
Python
10 lines
247 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="explaining_framework",
|
||
|
version="0.1",
|
||
|
description="Official implementation of the framework for explaining graph neural networks",
|
||
|
packages=["explaining_framework"],
|
||
|
zip_safe=False,
|
||
|
)
|