forked from jsonpickle/jsonpickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
97 lines (88 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jsonpickle"
authors = [
{ name = "Theelx" },
{ name = "David Aguilar", email = "[email protected]" },
]
description = "jsonpickle encodes/decodes any Python object to/from JSON"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = [
]
dynamic = ["version"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Documentation = "https://jsonpickle.readthedocs.io/"
Homepage = "https://jsonpickle.readthedocs.io/"
Source = "https://github.com/jsonpickle/jsonpickle"
[project.optional-dependencies]
cov = [
"pytest-cov",
]
dev = [
"black",
"pyupgrade",
]
testing = [
# core
"pytest >= 6.0, != 8.1.*",
"pytest-benchmark",
"pytest-benchmark[histogram]",
"pytest-checkdocs >= 1.2.3",
"pytest-enabler >= 1.0.1",
"pytest-ruff >= 0.2.1",
# local
"bson",
"ecdsa",
"feedparser",
"gmpy2",
"numpy",
"pandas",
"pymongo",
"PyYAML",
"scikit-learn",
"scipy>=1.9.3; python_version > '3.10'",
"scipy; python_version <= '3.10'",
"simplejson",
"sqlalchemy",
"ujson",
# fuzzing
"atheris ~= 2.3.0; python_version < '3.12'",
]
docs = [
"furo",
"rst.linker >= 1.9",
"sphinx >= 3.5",
]
packaging = [
"build",
"setuptools>=61.2",
"setuptools_scm[toml]>=6.0",
"twine",
]
[tool.setuptools]
packages = [
"jsonpickle",
"jsonpickle.ext",
]
include-package-data = true
license-files = ["LICENSE"]
[tool.black]
skip-string-normalization = true
[tool.setuptools_scm]
[tool.pytest-enabler.ruff]
addopts = "--ruff"
[tool.ruff.lint]
# E721 Do not compare types -> jsonpickle compares types using "is" for performance.
ignore = ["E721"]