-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 936 Bytes
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
[tool.poetry]
name = "somadata"
version = "1.2.2"
description = "SomaLogic Python Data Input/Output Library"
authors = [
"Joseph Allison",
"Ted Johnson",
"Kah Young"
]
maintainers = [
"Standard BioTools <support@somalogic.com>"
]
license = "MIT"
readme = "README.md"
include = [
{ path = "somadata/data/lift.zip" },
{ path = "*.adat" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
homepage = "https://www.standardbio.com/"
repository = "https://github.com/SomaLogic/Canopy"
[tool.poetry.dependencies]
python = "^3.9"
pandas = ">=1.1.2"
numpy = ">=1.19"
openpyxl = "^3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.1"
codespell = "^2.2.6"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"