-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.71 KB
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
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
dynamic = ["version"]
name = "cellsium"
authors = [
{name = "Christian C. Sachs", email = "c.sachs@fz-juelich.de"},
]
description = "CellSium – Cell Simulator for microfluidic microcolonies"
readme = "README.rst"
license = { file = "LICENSE.rst" }
urls = { Source = "https://github.com/modsim/cellsium" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"numpy>=1.17",
"scipy",
"matplotlib",
"tunable",
"jsonpickle",
"tqdm",
"pymunk",
"box2d",
"opencv-python",
"tifffile",
"roifile",
"numpy-stl",
"ezdxf",
]
[project.optional-dependencies]
check = ["black", "isort", "pyproject-flake8", "pylint"]
test = ["pytest", "pytest-cov"]
doc = ["sphinx", "sphinx-rtd-theme"]
[tool.black]
skip-string-normalization = 1
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=cellsium --cov-report=xml -vv --durations=0"
[tool.flake8]
max-line-length = 88
exclude = "local"
extend-ignore = "E203,"
max-complexity = 10
[tool.mypy]
warn_return_any = true
ignore_missing_imports = true