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 a97d138 commit a76cb30Copy full SHA for a76cb30
setup.py
@@ -1,9 +1,10 @@
1
from setuptools import setup, find_packages
2
+from pathlib import Path
3
-# Get the long description from the README file
4
-with open("README.md", "r") as f:
+root = Path(__file__).parent
5
+with open(root / "README.md", "r") as f:
6
long_description = f.read()
-with open(os.path.join(path, "requirements.txt")) as f:
7
+with open(root / "requirements-minimal.txt") as f:
8
install_requires = f.readlines()
9
setup(
10
name="nwbinspector",
0 commit comments