-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (22 loc) · 953 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
""" augment_to_interpret is the library used to produce the results of the paper
Augment to Interpret: Unsupervised and Inherently Interpretable Graph Embeddings
"""
import os
from setuptools import setup, find_packages
# Utility function to read the README file for the long description.
def read(filename):
with open(os.path.join(os.path.dirname(__file__), filename), encoding="utf-8") as file:
return file.read()
setup(
name="augment_to_interpret",
version="0.1",
author="Gregory Scafarto, Madalina Ciortan, Simon Tihon and Quentin Ferré",
author_email="[email protected]",
description="Produces the results of the paper Augment to Interpret: "
"Unsupervised and Inherently Interpretable Graph Embeddings",
# license="",
packages=find_packages(include=["augment_to_interpret"]),
long_description=read("README.md"),
# install_requires=[],
# python_requires=[],
)