-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.27 KB
/
pyproject.toml
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
54
55
56
57
58
59
60
61
[project]
name = "imc-preprocessor"
version = "0.1.0"
description = "Preprocessing tool for Imaging Mass Cytometry assays"
authors = [
"Bill Flynn <[email protected]>"
]
license = "MIT"
readme = "README.md"
python = "^3.8"
homepage = "https://github.com/TheJacksonLaboratory/imc-preprocessor"
repository = "https://github.com/TheJacksonLaboratory/imc-preprocessor"
documentation = "https://github.com/TheJacksonLaboratory/imc-preprocessor"
keywords = ["IMC", "imaging mass cytometry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[tool.flit.metadata]
module = "imcpp"
author = "Bill Flynn"
author-email = "[email protected]"
requires = [
"pandas>=1.0.5",
"pyyaml>=5.3.1",
"scikit-image>=0.17.2",
"scipy>=1.4.1",
"numpy>=1.18.5",
"imctools==1.0.7",
"tifffile==2019.7.26",
]
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict = true
filterwarnings = "ignore:.*imctools 1.x.*:DeprecationWarning"
testpaths = [
"tests",
]
[tool.black]
line-length = 90
target-version = ['py38']
exclude = '''
(
/(
| \.git
| \.venv
| build
| dist
)/
)
'''
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"