-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1 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
[tool.poetry]
name = "geneweaver-core"
version = "0.10.0a4"
description = "The core of the Jax-Geneweaver Python library"
authors = ["Jax Computational Sciences <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/TheJacksonLaboratory/geneweaver-client"
homepage = "https://thejacksonlaboratory.github.io/geneweaver-docs/"
packages = [
{ include = "geneweaver/core", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.8"
openpyxl = "^3.1.2"
numpy = ">=1.22,<2"
pandas = ">=1.5,<3"
requests = "^2.32.0"
pydantic-settings = "^2.3"
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.4"
pytest = "^7.1.3"
pydocstyle = "^6.1.1"
pytest-cov = "^4.0.0"
geneweaver-testing = "^0.1.0"
[tool.ruff]
select = ['F', 'E', 'W', 'A', 'C90', 'N', 'B', 'ANN', 'D', 'I', 'ERA', 'PD', 'NPY', 'PT']
[tool.ruff.per-file-ignores]
"tests/*" = ["ANN001", "ANN201"]
"src/*" = ["ANN101"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"