-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.01 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
# Copyright (C) 2024 Björn A. Lindqvist <bjourne@gmail.com>
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "myopencl"
version = "0.0.1"
description = "Small OpenCL wrapper based on ctypes"
authors = [
{name = "Björn A. Lindqvist"}
]
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent"
]
dependencies = [
"click>=8.0.0", "humanize"
]
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
homepage = "https://github.com/bjourne/myopencl"
[project.optional-dependencies]
test = [
"numpy",
"pytest>=5.0.0",
"torch"
]
[project.scripts]
mcl-tool = "myopencl.scripts:main"
[tool.pylint.format]
max-line-length = 80
[tool.pylint."messages control"]
disable = """
invalid-name,
missing-docstring,
no-value-for-parameter,
protected-access,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-locals,
too-many-positional-arguments,
wrong-import-order
"""