We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37128e commit 5edef2bCopy full SHA for 5edef2b
1 file changed
setup.py
@@ -2,7 +2,11 @@
2
import setuptools
3
from testipy import __app__, __version__, __author__, __author_email__
4
5
-os.chdir(os.path.dirname(os.path.abspath(__file__)))
+
6
+app_path = os.path.dirname(os.path.abspath(__file__))
7
+os.chdir(app_path)
8
+print(f"installing from {app_path}")
9
10
11
with open("README.md", "rt") as fh:
12
long_description = fh.read()
0 commit comments