From 8a4f8b9e088b4fe51ca3a645b0a8c9d16f292d90 Mon Sep 17 00:00:00 2001
From: antoinedemathelin <45264923+antoinedemathelin@users.noreply.github.com>
Date: Thu, 22 Feb 2024 11:03:31 +0100
Subject: [PATCH 1/2] Update README.md
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index b03345e..f74709a 100644
--- a/README.md
+++ b/README.md
@@ -296,3 +296,4 @@ If you use this library in your research, please cite ADAPT using the following
This work has been funded by Michelin and the Industrial Data Analytics and Machine Learning chair from ENS Paris-Saclay, Borelli center.
[](https://www.michelin.com/) [](https://centreborelli.ens-paris-saclay.fr/fr/chaire-idaml) [](https://centreborelli.ens-paris-saclay.fr/fr)
+
From ebd3ce333e3f9f1f257ab60ba7e8e1351fef97f3 Mon Sep 17 00:00:00 2001
From: antoinedemathelin <45264923+antoinedemathelin@users.noreply.github.com>
Date: Thu, 22 Feb 2024 11:30:01 +0100
Subject: [PATCH 2/2] Update setup.py
---
setup.py | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index a6fac40..4a733c9 100644
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,9 @@
+import os
from setuptools import setup, find_packages
-from pathlib import Path
-this_directory = Path(__file__).parent
-long_description = (this_directory / "README.md").read_text()
+ROOT = os.path.abspath(os.path.dirname(__file__))
+with open(os.path.join(ROOT, 'README.md'), encoding="utf-8") as f:
+ long_description = f.read()
setup(
name='adapt',