-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 848 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
46
47
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "API Consumer"
authors = [
{name = "Valentin B", email = "contact@valbou.fr"},
]
description = "An open-source lib to consume API REST (especially DRF)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GNU General Public License v3.0"}
classifiers = [
"Programming Language :: Python :: 3.10",
]
dependencies = [
"asyncio",
"requests",
]
dynamic = ["version"]
optional-dependencies.dev = [
"black",
"isort",
"coverage",
"bandit",
"colorama",
"Faker",
"flake8",
"mccabe",
]
[tool.setuptools_scm]
[tool.isort]
profile = "black"
[tool.coverage.run]
omit = ["*/tests/*"]
[tool.coverage.report]
fail_under = 90
skip_covered = true
skip_empty = true
sort = "cover"