Skip to content

Commit a76cb30

Browse files
Update setup.py
1 parent a97d138 commit a76cb30

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from setuptools import setup, find_packages
2+
from pathlib import Path
23

3-
# Get the long description from the README file
4-
with open("README.md", "r") as f:
4+
root = Path(__file__).parent
5+
with open(root / "README.md", "r") as f:
56
long_description = f.read()
6-
with open(os.path.join(path, "requirements.txt")) as f:
7+
with open(root / "requirements-minimal.txt") as f:
78
install_requires = f.readlines()
89
setup(
910
name="nwbinspector",

0 commit comments

Comments
 (0)