Skip to content

Commit 43149e2

Browse files
2 parents fc8d586 + ebd3ce3 commit 43149e2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,3 +296,4 @@ If you use this library in your research, please cite ADAPT using the following
296296
This work has been funded by Michelin and the Industrial Data Analytics and Machine Learning chair from ENS Paris-Saclay, Borelli center.
297297

298298
[<img src="https://github.com/adapt-python/adapt/raw/41c13055facc0733faf49c4e3979709e82be10e5/docs/_static/images/michelin.png" width=200px alt="Michelin">](https://www.michelin.com/) [<img src="https://github.com/adapt-python/adapt/raw/41c13055facc0733faf49c4e3979709e82be10e5/docs/_static/images/idaml.jpg" width=200px alt="IDAML">](https://centreborelli.ens-paris-saclay.fr/fr/chaire-idaml) [<img src="https://github.com/adapt-python/adapt/raw/41c13055facc0733faf49c4e3979709e82be10e5/docs/_static/images/borelli.jpg" alt="Centre Borelli" width=150px>](https://centreborelli.ens-paris-saclay.fr/fr)
299+

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
import os
12
from setuptools import setup, find_packages
2-
from pathlib import Path
33

4-
this_directory = Path(__file__).parent
5-
long_description = (this_directory / "README.md").read_text()
4+
ROOT = os.path.abspath(os.path.dirname(__file__))
5+
with open(os.path.join(ROOT, 'README.md'), encoding="utf-8") as f:
6+
long_description = f.read()
67

78
setup(
89
name='adapt',

0 commit comments

Comments
 (0)