-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
106 lines (93 loc) · 2.52 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
[build-system]
requires = ["Cython>=3,<4", "setuptools>=62.3.0", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wsgi_lineprof"
description = "WSGI middleware for line-by-line profiling"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Yusuke Miyazaki", email="[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development",
"Topic :: System :: Benchmark",
]
dependencies = [
"colorama>=0.4.1",
"Jinja2",
"pytz",
"typing-extensions"
]
dynamic = ["readme", "version"]
[project.optional-dependencies]
benchmark = [
"asv>=0.4,<0.5",
"virtualenv"
]
benchmark-deps = [
"Jinja2==2.10",
"WebTest==2.0.32"
]
docs = [
"Sphinx>=6,<7",
"sphinx_rtd_theme>=1,<2"
]
test = [
"mypy>=1,<2",
"pytest>=7,<8",
"pytest-cov>=4,<5",
"pytest-mock>=1.11",
"pytest-randomly",
"types-colorama",
"types-pytz"
]
[project.urls]
Documentation = "https://wsgi-lineprof.readthedocs.io"
Source = "https://github.com/ymyzk/wsgi_lineprof"
[tool.cibuildwheel]
skip = "cp36-* pp*"
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:"
]
ignore_errors = true
[tool.isort]
profile = "black"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
[tool.setuptools.packages.find]
namespaces = true
where = ["."]
include = ["extensions", "wsgi_lineprof"]
[tool.setuptools.package-data]
wsgi_lineprof = ["py.typed", "*.pyi"]
"wsgi_lineprof.templates" = ["*.html"]
[tool.setuptools_scm]
write_to = "wsgi_lineprof/version.py"