-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (43 loc) · 977 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "readfcs"
authors = [{name = "Lamin Labs", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"scipy<1.13.0rc1", # for compatibility with fcsparser
"lamin_utils",
"fcsparser",
"anndata",
]
[project.urls]
Home = "https://github.com/laminlabs/readfcs"
[project.optional-dependencies]
dev = [
"pre-commit",
"nox",
"pytest>=6.0",
"pytest-cov",
"nbproject-test",
"laminci",
]
[tool.black]
preview = true
[tool.pytest.ini_options]
testpaths = [
"tests",
"docs",
]
[tool.coverage.run]
omit = [
"readfcs/*",
]