explaining_framework/setup.py

10 lines
247 B
Python
Raw Normal View History

2022-12-17 17:13:56 +00:00
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,
)