-
Notifications
You must be signed in to change notification settings - Fork 183
/
pyproject.toml
123 lines (106 loc) · 2.82 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
[project]
name = "faust-streaming"
description = "Python Stream Processing. A Faust fork"
requires-python = ">=3.8"
dynamic = [
"version",
"optional-dependencies",
"dependencies",
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"stream",
"processing",
"asyncio",
"distributed",
"queue",
"kafka",
]
classifiers = [
"Framework :: AsyncIO",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"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",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD",
"Operating System :: Microsoft :: Windows",
"Topic :: System :: Networking",
"Topic :: System :: Distributed Computing",
]
authors = [
{ name = "Ask Solem Hoel", email= "[email protected]" },
{ name = "Vineet Goel", email= "[email protected]" },
]
maintainers = [
{ name = "Vikram Patki", email = "[email protected]" },
{ name = "William Barnhart", email = "[email protected]" },
]
[project.scripts]
faust = "faust.cli.faust:cli"
[project.urls]
Documentation = "https://faust-streaming.github.io/faust/"
Source = "https://github.com/faust-streaming/faust"
Changes = "https://github.com/faust-streaming/faust/releases"
[build-system]
requires = [
"setuptools>=30.3.0",
"setuptools_scm[toml]",
"wheel",
"cython>=0.29; implementation_name == 'cpython'",
"cython>=3.0.0; implementation_name == 'cpython' and python_version >= '3.12'",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# enables setuptools_scm to provide the dynamic version
[tool.flake8]
ignore = [
"W503",
"E203",
"E231",
"E225",
"B305",
]
max-line-length = 88
[tool.isort]
profile = "black"
combine_as_imports = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
minversion = "6.0"
addopts = [
"--cov-report=term-missing:skip-covered",
"--cov=faust",
"-rxXs",
"--strict-config",
"--strict-markers",
]
filterwarnings = [
"error::ResourceWarning",
]
xfail_strict = true
testpaths = [
"tests",
"integration",
]
[tool.cibuildwheel]
build = "cp3*"
archs = ["auto64"]
skip = ["*musllinux*"]
before-build = "pip install Cython"
manylinux-x86_64-image = "manylinux2014"
manylinux-pypy_x86_64-image = "manylinux2014"