We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a4f8b9 commit ebd3ce3Copy full SHA for ebd3ce3
setup.py
@@ -1,8 +1,9 @@
1
+import os
2
from setuptools import setup, find_packages
-from pathlib import Path
3
4
-this_directory = Path(__file__).parent
5
-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:
6
+ long_description = f.read()
7
8
setup(
9
name='adapt',
0 commit comments