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 d49e53e commit 3f408beCopy full SHA for 3f408be
setup.py
@@ -1,8 +1,9 @@
1
+import os
2
from setuptools import find_packages, setup
3
4
-def read_requirements(file):
5
- with open(file, "r") as f:
+def read_requirements(filename):
6
+ with open(os.path.join(os.path.dirname(__file__), filename), "r") as f:
7
return [line.strip() for line in f if line and not line.startswith("#")]
8
9
0 commit comments