-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 752 Bytes
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
[project]
name = "piconumpy"
version = "0.0.0"
description = "An experiment about Numpy and pyhandle/hpy."
authors = [
{name = "Pierre Augier", email = "pierre.augier@univ-grenoble-alpes.fr"},
]
license = {text = "BSD 3-Clause"}
readme = "README.md"
keywords = ["numpy", "hpy", "PyPy"]
requires-python = ">=3.8"
[project.urls]
homepage = "https://github.com/paugier/piconumpy"
repository = "https://github.com/paugier/piconumpy"
documentation = "https://github.com/paugier/piconumpy"
[project.optional-dependencies]
dev = ['transonic', 'numpy', 'pytest', 'pythran']
full = ['black']
[build-system]
requires = [
"setuptools >= 35.0.2",
"wheel",
"cython",
"hpy >= 0.9.0"
]
[tool.black]
line-length = 82
target_version = ['py310']