forked from biocypher/biocypher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (100 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
112 lines (100 loc) · 2.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "biocypher"
version = "0.9.6"
description = "A unifying framework for biomedical research knowledge graphs"
authors = [
"Sebastian Lobentanzer <sebastian.lobentanzer@gmail.com>",
"Denes Turei <turei.denes@gmail.com>"
]
license = "MIT"
packages = [
{ include = "biocypher" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
repository = "https://github.com/biocypher/biocypher"
readme = "README.md"
[project]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://biocypher.org"
Documentation = "https://biocypher.org"
Repository = "https://github.com/biocypher/biocypher.git"
Issues = "https://github.com/biocypher/biocypher/issues"
[tool.poetry.dependencies]
python = "^3.10"
PyYAML = ">=5.0"
more_itertools = "*"
appdirs = "*"
treelib = "1.6.4"
rdflib = "^6.2.0"
networkx = "^3.0"
neo4j-utils = "0.0.7"
pandas = "^2.0.1"
pooch = "^1.7.0"
tqdm = "^4.65.0"
[tool.poetry.group.dev.dependencies]
mkdocs-material = "^9.5"
mkdocstrings-python="^1.12"
mkdocs-jupyter = "^0.25"
neoteroi-mkdocs = "^1.1.0"
pytest = ">=6.0"
pre-commit = ">=2.17.0"
bump2version = "*"
coverage = ">=6.0"
pytest-cov = "^3.0.0"
hypothesis = "^6.50.1"
ipython = "^8.7.0"
ipykernel = "^6.23.1"
coverage-badge = "^1.1.0"
nbsphinx = "^0.9.6"
ruff = "^0.2.0"
mike = "^2.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/biocypher/biocypher/issues"
[tool.pytest.ini_options]
log_cli = true
log_level = "INFO"
markers = [
"requires_neo4j: Requires connection to a Neo4j server",
"requires_postgresql: Requires connection to a PostgreSQL server",
"inject_driver_args(driver_args): Arguments for the Driver",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
# Exclude directories similar to your black configuration
exclude = [
".eggs",
".git",
".hg",
".mypy_cache",
".tox",
".venv",
"_build",
"buck-out",
"build",
"dist",
]
[tool.ruff.lint.pycodestyle]
max-doc-length = 80
[tool.ruff.lint.per-file-ignores]
"test/*" = ["ANN001", "ANN201", "D100", "D101", "D102", "D103", "D104", "I001", "S101"]
[tool.ruff.lint.isort]
known-first-party = ["numpy", "pandas"]
combine-as-imports = true
lines-between-types = 1
force-wrap-aliases = true
split-on-trailing-comma = true