-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (27 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
35 lines (27 loc) · 754 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
33
34
35
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numpyencoder"
version = "0.3.2"
description = "Python JSON encoder for handling Numpy data types."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.6"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Hunter M. Allen", email = "allenhm@gmail.com" },
]
keywords = ["numpy", "json", "encoder"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.14.3",
"packaging>=20.0",
]
[project.urls]
Homepage = "https://github.com/hmallen/numpyencoder"
[tool.setuptools.packages.find]
include = ["numpyencoder*"]