forked from DLR-RM/python-jsonconversion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1.36 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
[project]
name = "jsonconversion"
version = "1.0.1"
description = "This python module helps converting arbitrary Python objects into JSON strings and back."
keywords = ["json", "conversion", "serialization"]
readme = "README.rst"
authors = [
{name = "Franz Steinmetz", email = "[email protected]"},
{name = "Johannes Ernst", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Object Brokering",
"Topic :: Utilities"
]
dependencies = [
"numpy<2.0.0,>=1.22.4",
]
license = {text = "BSD"}
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/DLR-RM/python-jsonconversion"
[tool.pdm.build]
package-dir = "source"
includes = ["source/jsonconversion"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"