We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76bff5 commit 83b4b48Copy full SHA for 83b4b48
1 file changed
setup.py
@@ -4,7 +4,8 @@
4
import os
5
6
def read_requirements():
7
- with open('requirements.txt') as f:
+ req_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
8
+ with open(req_path) as f:
9
return f.read().splitlines()
10
11
# Load environment variables
0 commit comments