-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 984 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
42
43
44
45
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "zgit"
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Intel Corp", email = "wenyitang@outlook.com" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["git", "git graph"]
dynamic = ["version", "description"]
dependencies = ["dateparser", "numpy", "matplotlib"]
[project.urls]
Home = "https://github.com/llteco/zgit"
[project.scripts]
zgit-sync = "zgit.sync.sync:sync"
zgit-plot = "zgit.plot.__main__:main"
zgit-gc = "zgit.gc.__main__:main"
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = ['__init__.py:F401']
max-line-length = 88
max-complexity = 20
count = true
[tool.isort]
profile = "black"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-module-docstring",
"no-member",
"no-name-in-module",
"fixme",
"R",
"I",
]