explaining_framework/setup.py
2022-12-17 18:13:56 +01:00

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,
)