forked from lowe-lab-ucl/octopuslite-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (46 loc) · 1.38 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[metadata]
name = octopuslite
version = 0.3
author = Alan R. Lowe, Nathan Day
author_email = [email protected]
url = https://github.com/lowe-lab-ucl/octopuslite-reader
description = Load multidimensional image stacks using lazy loading
long_description = file: README.md
long_description_content_type = text/markdown
classifier =
Programming Language :: C++
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Image Recognition
Framework :: napari
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
[options]
python_requires = >=3.7
install_requires =
dask
numpy
scipy
scikit-image
[options.extras_require]
tests =
pytest
[flake8]
# Ignores - https://lintlyci.github.io/Flake8Rules
# E203 Whitespace before ':' (sometimes conflicts with black)
# E501 line too long (84 > 79 characters)
# E731 do not assign a lambda function
# W503 Line break occurred before a binary operator
# C901 McCabe complexity test.
ignore = E203, W503, E501, E731, C901
max-line-length = 79
max-complexity = 18
exclude = __init__.py