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 d521d35 commit 58f23c2Copy full SHA for 58f23c2
setup.py
@@ -11,6 +11,10 @@
11
12
current_date = datetime.now().strftime("%Y.%m.%d")
13
14
+def read_requirements(file_path):
15
+ with open(file_path, "r") as file:
16
+ return file.read().splitlines()
17
+
18
def read_version(file_path="version.txt"):
19
with open(file_path, "r") as file:
20
return file.readline().strip()
0 commit comments