-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (81 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
97 lines (81 loc) · 1.73 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm",
]
[project]
name = "integration-develop"
description = "Repo for integrated code develop"
readme = "README.md"
keywords = [
"Integration Develop",
"Python",
]
license = {file = "LICENSE"}
maintainers = [
{name = "Xi Wang", email = "esche.wang@outlook.com"},
]
authors = [
{name = "Xi Wang", email = "esche.wang@outlook.com"},
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = [
"version",
]
dependencies = [
"pytest-cover",
]
[tool.setuptools]
packages = ["integration_develop"]
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.flake8]
max-line-length = 120
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov"
[tool.coverage.run]
branch = true
omit = ["tests/*", "setup.py"]
[tool.coverage.paths]
source = ["./*"]
[tool.coverage.xml]
output = "coverage.xml"
[tool.coverage.json]
output = "coverage.json"
[tool.coverage.report]
show_missing = true
fail_under = 60
[tool.mypy]
ignore_missing_imports = true
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = """
C0114,
C0115,
C0116,
E0012,
E0401,
R0201,
R0801,
"""
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.main]
fail-under = 9.8