-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 939 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
[project]
name = "eatool"
version = "1.0.2"
description = "EA Team tool that does things"
authors = [
{ name = "Philipp Kewisch", email = "[email protected]" }
]
requires-python = ">=3.6"
dependencies = [
"indico-cli @ git+https://github.com/kewisch/indico-cli",
"click",
"pyyaml",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib"
]
[project.urls]
homepage = "https://github.com/kewisch/canonical-eatool"
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8",
"Flake8-pyproject",
"nox"
]
[project.scripts]
eatool = "eatool.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.flake8]
ignore = ["E203", "E266", "E501", "W503"]
max-line-length = 100
max-complexity = 18
select = ["B","C","E","F","W","T4"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100