-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
53 lines (48 loc) · 1.34 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
51
52
53
[metadata]
name = smo
description = Implementation of the Silver Mountain Operator (SMO) for the estimation of background distributions.
url = https://github.com/maurosilber/smo
author = Mauro Silberberg
author_email = maurosilber@gmail.com
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
keywords = background, fluorescence, microscopy, imaging
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
Framework :: napari
[options]
packages = smo
include_package_data = True
install_requires =
numpy
scipy
typing_extensions;python_version<'3.9'
[options.extras_require]
dev =
pre-commit
pytest
tox
[options.entry_points]
napari.plugin =
smo = smo.plugins.napari
[bdist_wheel]
universal = 1
[flake8]
per-file-ignores =
# imported but unused
__init__.py: F401
# Black
max-line-length = 88
extend-ignore = E203