-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
78 lines (68 loc) · 1.75 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
[project]
name = "autoray"
description = "Abstract your array operations."
readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
authors = [{ name = "Johnnie Gray", email = "[email protected]" }]
license = { text = "Apache" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"agnostic",
"array",
"autograd",
"cupy",
"dask",
"dispatch",
"jax",
"numeric",
"numpy",
"tensor",
"tensorflow",
]
[project.optional-dependencies]
tests = ["numpy", "coverage", "pytest", "pytest-cov"]
docs = [
"astroid<3",
"furo",
"ipython!=8.7.0",
"myst-nb",
"setuptools_scm",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx>=2.0",
]
[project.urls]
"Documentation" = "https://autoray.readthedocs.io/"
"Repository" = "https://github.com/jcmgray/autoray/"
"Issues" = "https://github.com/jcmgray/autoray/issues"
"Changelog" = "https://github.com/jcmgray/autoray/releases"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[tool.setuptools_scm]
write_to = "autoray/_version.py"
[tool.pytest.ini_options]
testpaths = "tests"
filterwarnings = "once"
[tool.coverage.run]
omit = ["*/autoray/experimental/*"]
source = ["autoray"]
[tool.pylama]
ignore = "C901"
max_line_length = 79
[tool.ruff]
line-length = 79
target-version = "py39"
lint.ignore = ["E741"]
[tool.black]
line-length = 79
target-version = ['py39']