-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.8 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=60",
"wheel",
"cython==3.0.11",
"liburing @ git+https://github.com/YoSTEALTH/Liburing.git"
]
[project]
name = "shakti"
dynamic = ["version"]
authors = [{name="Ritesh"}]
license-files = ["LICENSE.txt"]
readme = {file="README.rst", content-type="text/x-rst"}
requires-python = ">=3.9"
dependencies = ["dynamic-import", "liburing"]
description = "Shakti will be providing developers with fast & powerful yet easy to use Python Async Interface, without the complexity of using Liburing & io_uring directly."
classifiers = [
"Topic :: Software Development",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 1 - Planning"
# "Development Status :: 2 - Pre-Alpha"
# "Development Status :: 3 - Alpha"
# "Development Status :: 4 - Beta"
# "Development Status :: 5 - Production/Stable"
# "Development Status :: 6 - Mature"
# "Development Status :: 7 - Inactive"
]
[project.urls]
Homepage = "https://github.com/YoSTEALTH/Shakti"
Issues = "https://github.com/YoSTEALTH/Shakti/issues"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr="shakti.__version__"}
[tool.setuptools.package-data]
"*" = ["*.pyx", "*.pxd"]
# for debugging locally START >>>
# [tool.pytest.ini_options]
# pythonpath = ["src"]
# [tool.coverage.run]
# plugins = ["Cython.Coverage"]
# [tool.cython-lint]
# max-line-length = 120
# ignore = ['E221']
# for debugging locally END <<<