-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
34 lines (32 loc) · 929 Bytes
/
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
[metadata]
name = readimc
url = https://github.com/BodenmillerGroup/readimc
author = Jonas Windhager
author_email = [email protected]
maintainer = Milad Adibi
maintainer_email = [email protected]
classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: MIT License
license = MIT
license_files = LICENSE
description = Python package for reading imaging mass cytometry (IMC) files
long_description = file: README.md
long_description_content_type = text/markdown
keywords = imaging mass cytometry, IMC
[options]
zip_safe = True
install_requires =
imageio[tifffile]>=v2.24.0
numpy
pandas
python_requires = >=3.8
packages = find:
[flake8]
max-line-length = 88
extend-ignore = E203