-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
95 lines (86 loc) · 1.96 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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ams-wf"
version = "1.0"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"argparse",
"kosh>=3.0.1",
"pika>=1.3.0",
"numpy>=1.2.0"
]
[project.scripts]
AMSBroker = "ams_wf.AMSBroker:main"
AMSDBStage = "ams_wf.AMSDBStage:main"
AMSOrchestrator = "ams_wf.AMSOrchestrator:main"
AMSStore = "ams_wf.AMSStore:main"
AMSTrain = "ams_wf.AMSTrain:main"
AMSDeploy = "ams_wf.AMSDeploy:main"
[project.urls]
"Homepage" = "https://github.com/LLNL/AMS/"
[tool.setuptools]
package-dir = {"" = "src/AMSWorkflow"}
packages = ["ams_wf", "ams"]
# Black formatting
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
.eggs # exclude a few common directories in the
| .git # root of the project
| .hg
| .mypy_cache
| .tox
| venv
| _build
| buck-out
| build
| dist
)/
'''
# iSort
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
virtual_env = "venv"
# flake8
[tool.flake8]
ignore = ["E501", "W503", "E226", "BLK100", "E203"]
max-line-length = 120
exclude = [
# No need to traverse our git directory
".git",
# There's no value in checking cache directories
"__pycache__",
"*.egg-info",
"build"
]
# E501: Line too long
# W503: Line break occurred before binary operator
# E226: Missing white space around arithmetic operator
[tool.ruff]
lint.ignore = ["E501", "E226", "E203"]
show-fixes = true
exclude = [
".git",
"__pycache__",
"*.egg-info",
"build"
]
# change the default line length number or characters.
line-length = 120
lint.select = ['E', 'F', 'W', 'A', 'PLC', 'PLE', 'PLW', 'I', 'N', 'Q']
[tool.yapf]
ignore = ["E501", "W503", "E226", "BLK100", "E203"]
column_limit = 120