forked from anuran-roy/starlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
106 lines (93 loc) · 2.55 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
96
97
98
99
100
101
102
103
104
105
106
[tool.poetry]
name = "starlite"
version = "1.2.0"
description = "Light-weight and flexible ASGI API Framework"
authors = ["Na'aman Hirschfeld <[email protected]>"]
maintainers = ["Na'aman Hirschfeld <[email protected]>", "Ashwin Vinod <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/starlite-api/starlite"
repository = "https://github.com/starlite-api/starlite"
documentation = "https://starlite-api.github.io/starlite"
keywords = ["api", "rest", "http", "asgi", "pydantic", "starlette", "fastapi", "framework"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
]
include = ["CHANGELOG.md"]
packages = [
{ include = "starlite" },
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
openapi-schema-pydantic = "*"
orjson = "*"
pydantic = "*"
pydantic-factories = "*"
python-multipart = "*"
pyyaml = "*"
requests = "*"
starlette = "*"
typing-extensions = "*"
[tool.poetry.dev-dependencies]
hypothesis = { extras = ["cli"], version = "*" }
mkdocs-material = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
uvicorn = "*"
sqlalchemy = {extras = ["mypy"], version = "*"}
Jinja2 = "*"
Mako = "*"
freezegun = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pylint.MESSAGE_CONTROL]
disable = [
"fixme",
"invalid-name",
"line-too-long",
"missing-class-docstring",
"missing-module-docstring",
"super-init-not-called",
"too-few-public-methods",
"duplicate-code",
]
enable = "useless-suppression"
[tool.pylint.REPORTS]
reports = "no"
[tool.pylint.FORMAT]
max-line-length = "120"
[tool.pylint.DESIGN]
max-args = 15
max-attributes = 15
max-locals = 30
max-returns = 15
max-branches = 15
[tool.pylint.VARIABLES]
ignored-argument-names = "args|kwargs|_|__"
[tool.pylint.BASIC]
good-names = "_,i,e,fn"
[tool.coverage.run]
omit = ["*/tests/*", "*/performance_test/*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"