-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (50 loc) · 1.79 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]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=60", "wheel", "cython>=3",
"liburing @ git+https://github.com/YoSTEALTH/Liburing.git"]
[project]
name = "shakti"
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", "liburing @ git+https://github.com/YoSTEALTH/Liburing.git"]
description = "..."
classifiers = ["Topic :: Software Development",
"License :: Other/Proprietary License",
"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 :: 1 - Planning"]
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 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 = 100
# ignore = ['E221']
# for debugging locally END <<<