Skip to content
Snippets Groups Projects
Commit 406e69ee authored by Ruben Verweij's avatar Ruben Verweij Committed by Lorenzo ZOLFANELLI
Browse files

Update dependencies

parent a58d8d75
Branches
Tags
No related merge requests found
...@@ -11,10 +11,10 @@ notifications: ...@@ -11,10 +11,10 @@ notifications:
email: false email: false
python: python:
- 3.5
- 3.6 - 3.6
- 3.7 - 3.7
- 3.8 - 3.8
- 3.9
install: install:
- pip install --upgrade pip setuptools wheel - pip install --upgrade pip setuptools wheel
......
include MANIFEST.in include MANIFEST.in
include VERSION
include setup.py include setup.py
include setup.cfg
include README.md include README.md
include LICENSE include LICENSE
include COPYING include COPYING
...@@ -4,7 +4,7 @@ from nd2reader.legacy import Nd2 ...@@ -4,7 +4,7 @@ from nd2reader.legacy import Nd2
try: try:
import importlib.metadata as importlib_metadata import importlib.metadata as importlib_metadata
except ModuleNotFoundError: except:
import importlib_metadata import importlib_metadata
try: try:
......
numpy>=1.9.2 numpy>=1.14
six>=1.4 six>=1.4
xmltodict>=0.9.2 xmltodict>=0.9.2
pims>=0.3.0 pims>=0.3.0
\ No newline at end of file
...@@ -7,11 +7,12 @@ if __name__ == '__main__': ...@@ -7,11 +7,12 @@ if __name__ == '__main__':
name='nd2reader', name='nd2reader',
packages=['nd2reader'], packages=['nd2reader'],
install_requires=[ install_requires=[
'numpy>=1.6.2', 'numpy>=1.14',
'six>=1.4', 'six>=1.4',
'xmltodict>=0.9.2', 'xmltodict>=0.9.2',
'pims>=0.3.0' 'pims>=0.3.0'
], ],
python_requires=">=3.6",
version=VERSION, version=VERSION,
description='A tool for reading ND2 files produced by NIS Elements', description='A tool for reading ND2 files produced by NIS Elements',
author='Ruben Verweij', author='Ruben Verweij',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment