forked from eyermt/moss
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
54 lines (46 loc) · 971 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
50
51
52
53
54
[project]
name = "MOSS"
version = "0.1.0"
description = "Map of Open Source Science"
authors = [
]
dependencies = [
"neo4j>=5.24.0",
"click>=8.1.7",
"pydantic>=2.9.2",
"neomodel[extras]>=5.0.1",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[tool.ruff]
line-length = 88
lint.select = [
"F", # pyflakes rules
"E", # pycodestyle error rules
"W", # pycodestyle warning rules
"B", # flake8-bugbear rules
"I", # isort rules
]
lint.ignore = [
"E501", # line-too-long
]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = [
"flake8>=7.1.1",
"ruff>=0.6.5",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-gen-files>=0.5.0",
"mkdocstrings[python]>=0.26.1",
]
[tool.pdm.scripts]
format = "ruff format ."