-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.18 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "batch-processing"
version = "1.1.0"
authors = [{ name = "Doğukan Teber", email = "[email protected]" }]
description = "An internal tool that automates almost everything in the GCP Cluster"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix/macOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/whrc/batch-processing"
[tool.setuptools.package-data]
"batch_processing" = ["templates/**/*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.scripts]
bp = "batch_processing:main.main"
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade,
"I", # isort
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = 20