-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.07 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
[tool.poetry]
name = "gocam"
version = "0.0.0"
description = "GO CAM Data Model (Python)"
authors = ["The Gene Ontology Consortium <[email protected]>"]
license = "BSD-3"
readme = "README.md"
include = ["README.md", "src/gocam/schema", "project"]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8"
linkml-runtime = "^1.1.24"
ndex2 = "^3.9.0"
prefixmaps = "^0.2.6"
pydantic = "^2"
pyyaml = "^6"
requests = "^2"
[tool.poetry.group.dev.dependencies]
linkml = "^1.3.5"
mkdocs-material = "^8.2.8"
mkdocs-mermaid2-plugin = ">=1.1.1"
ruff = "^0.6.9"
schemasheets = "^0.1.14"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
requests-mock = "^1.12.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
gocam = "gocam.cli:cli"
[tool.pytest.ini_options]
markers = [
"integration"
]
[tool.ruff]
exclude = [
"project",
"src/gocam/datamodel"
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]