-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.18 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
[build-system]
build-backend = "maturin"
requires = ["maturin>=0.13"]
[project]
name = "serde-numpy"
version = "0.3.0"
description = "A library for deserializing various formats directly into numpy arrays"
authors = [{name="Will Norcliffe Brown"}]
dependencies = ["numpy>=1.18"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Programming Language :: Rust",
"Typing :: Typed",
]
[dev-dependencies]
pytest = "^6.1"
pillow = "^9.5"
scikit-image= "^3.0"
[project.urls]
homepage = "https://github.com/wnorcbrown/serde-numpy"
documentation = "https://github.com/wnorcbrown/serde-numpy"
repository = "https://github.com/wnorcbrown/serde-numpy"
[tool.maturin]
sdist-include = ["LICENSE", "Readme.md"]