-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.37 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
[project]
name = "SJSON"
dynamic = ["version"]
authors = [
{name = "Matthäus G. Chajdas", email = "[email protected]" }
]
description = "SJSON serializer/deserializer for Python"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "BSD 3-clause license"}
keywords = ["SJSON"]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.10"
[project.urls]
Homepage = "http://sh13.net/projects/SJSON"
"Issue Tracker" = "https://github.com/anteru/sjson/issues"
Repository = "https://github.com/anteru/sjson"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist=py310,py311,py312
[testenv]
deps=
pytest
commands=
pytest sjson
[testenv:cov]
deps=
pytest
pytest-cov
coverage
commands=
pytest --cov=sjson sjson
coverage html
"""
[tool.hatch.version]
path = "sjson/__init__.py"
[tool.hatch.build.targets.wheel]
exclude = ["test"]