forked from phenobarbital/navigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (54 loc) · 1.64 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
[build-system]
requires = [
'setuptools==67.6.1',
'wheel==0.42.0',
'Cython==3.0.6',
'toml >= 0.10.2',
'flit'
]
build-backend = "setuptools.build_meta"
[tool.flit.metadata]
module = "navigator"
author = "Jesus Lara G."
author-email = "jesuslarag@gmail.com"
home-page = "https://github.com/phenobarbital/navigator"
requires-python = ">=3.9.16"
description-file = "README.md"
license = "LICENSE"
keywords = "framework, asyncio, uvloop, aiohttp, navigator"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: BSD License",
]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
profile = "black"
filterwarnings = [
"error",
'ignore:The loop argument is deprecated since Python 3\.8, and scheduled for removal in Python 3\.10:DeprecationWarning:asyncio',
]