-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
124 lines (103 loc) · 3.13 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "ellar_cli"
[project]
name = "ellar-cli"
authors = [
{name = "Ezeudoh Tochukwu", email = "[email protected]"},
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
readme = "README.md"
home-page = "https://github.com/python-ellar/ellar"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Framework :: AsyncIO",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
# exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225
"tomlkit >=0.11.1,<1.0.0,!=0.11.2,!=0.11.3",
"ellar >= 0.8.1",
"uvicorn[standard] == 0.32.1",
"click >= 8.1.7",
]
[project.scripts]
ellar = "ellar_cli.cli:main"
[project.urls]
Documentation = "https://github.com/python-ellar/ellar-cli"
Source = "https://github.com/python-ellar/ellar-cli"
Homepage = "https://python-ellar.github.io/ellar-cli/"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.isort]
known-third-party = ["ellar",]
[tool.mypy]
show_column_numbers = true
follow_imports = 'normal'
ignore_missing_imports = true
# be strict
disallow_untyped_calls = true
warn_return_any = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_untyped_defs = true
check_untyped_defs = true
implicit_reexport = false
[[tool.mypy.overrides]]
module = "ellar_cli.compatible.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "ellar_cli.cli.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "ellar_cli.service.cli"
disable_error_code = ["assignment", 'union-attr', 'return-value', 'no-any-return']
[[tool.mypy.overrides]]
module = "ellar_cli.schema.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "ellar_cli.__main__.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "ellar_cli.manage_commands.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "ellar_cli.testing.*"
ignore_errors = true