-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (66 loc) · 2.16 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
[tool.poetry]
name = "ScopusSurveyAPI"
version = "3.0.0"
description = "Web API for bibliographic survey of Scopus articles"
authors = ["mauprogramador <sir.silvabmauricio@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/mauprogramador/scopus-survey-api"
documentation = "https://mauprogramador.github.io/scopus-survey-api/"
keywords = ["scopus", "theoretical reference", "python", "clean architecture"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment :: Mozilla",
"Framework :: FastAPI",
"Framework :: Pytest",
"Framework :: MkDocs",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: Free For Educational Use",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: JavaScript",
"Topic :: Documentation",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
requires-python = "^3.11"
build-backend = "poetry.core.masonry.api"
[tool.pylint]
disable = ["C0114", "C0115", "C0116", "C0123", "R0903", "E1136", "E0611", "E1131", "R0801"]
[tool.bandit]
exclude_dirs = [".venv"]
skips = ["B105", "B101"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = ["tests/"]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.coverage.run]
omit = [
"app/framework/fastapi/lifespan.py",
"app/utils/*"
]
[tool.mypy]
python_version = "3.11"
disable_error_code = ["assignment", "no-redef", "arg-type", "import-untyped"]
[tool.black]
target-version = ["py311"]
line-length = 79