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 2790853 commit 11cd321Copy full SHA for 11cd321
requirements.txt
@@ -8,4 +8,6 @@ Matplotlib<3.0.0
8
seaborn<=0.9.0
9
pyteomics<=3.5.1
10
tqdm<=4.28.1
11
-biopython<=1.72
+biopython<=1.72
12
+pyqt5<=5.10 ; python_version >= '3.0'
13
+python-qt5<=0.3.0 ; python_version < '3.0' and sys_platform == 'win32'
setup.py
@@ -8,10 +8,7 @@
def main():
- if sys.platform == "win32" or sys.platform == "win64":
- install_requires = open('requirements-win.txt').read().splitlines()
- else:
14
- install_requires = open('requirements.txt').read().splitlines()
+ install_requires = open('requirements.txt').read().splitlines()
15
16
setuptools.setup(name="beams",
17
version=beams.__version__,
0 commit comments