-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (55 loc) · 1.93 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=60", "wheel", "cython>=3"]
[project]
name = "liburing"
dynamic = ["version"]
authors = [{name="Ritesh"}]
readme = {file="README.rst", content-type="text/x-rst"}
license = {file="LICENSE.txt", content-type="text"}
requires-python = ">=3.8"
dependencies = ["dynamic-import"]
description = "Liburing is Python + Cython wrapper around C Liburing, which is a helper to setup and tear-down io_uring instances."
classifiers = ["Topic :: Software Development",
"License :: Public Domain",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"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",
"Development Status :: 3 - Alpha"]
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 7 - Inactive
[project.urls]
Homepage = "https://github.com/YoSTEALTH/Liburing"
Issues = "https://github.com/YoSTEALTH/Liburing/issues"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr="liburing.__version__"}
[tool.setuptools.package-data]
"*" = ["*.pyx", "*.pxd", "*.h"]
# for debugging locally START >>>
# [tool.pytest.ini_options]
# pythonpath = ["src"]
# [tool.coverage.run]
# plugins = ["Cython.Coverage"]
# [tool.coverage.report]
# exclude_also = [
# "raise NotImplementedError",
# "memory_error\\(self\\)",
# "index_error\\(self, index, '.*'\\)"
# ]
[tool.cython-lint]
max-line-length = 100
ignore = ['E221', 'E222']
# for debugging locally END <<<