Skip to content

Commit 595698d

Browse files
author
Nick Canzoneri
committed
Add missing import
1 parent dad6768 commit 595698d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
import setuptools
22

3+
from os import path
4+
35
with open("README.md", "r") as fh:
46
long_description = fh.read()
57

8+
CWD = path.abspath(path.dirname(__file__))
9+
610
with open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
711
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
812

0 commit comments

Comments
 (0)