-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.15 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "pyarraypool"
description = "Manage pool of array using shared memory"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Rust",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
]
keywords = ["sharedmemory", "pool", "ndarray"]
maintainers = [
{name = "Arthur LE MOIGNE", email = "[email protected]"}
]
readme = "README.md"
dependencies = [
"numpy",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov[all]",
"flake8",
"autopep8",
"isort",
"mypy",
]
[project.urls]
Source = "https://github.com/arthurlm/pyarraypool"
[tool.maturin]
python-source = "python"