-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.07 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
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=7.1",
"wheel",
"twine",
]
build-backend = "setuptools.build_meta"
[project]
name = "lindh-jsonobject"
dynamic = ["version"]
authors = [
{ name="Johan Egneblad", email="[email protected]" },
]
description = "Dynamic and static layer JSON serialization and deserializion of python objects"
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.7.1"
dependencies = [ ]
classifiers = [
"Development Status :: 6 - Mature",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: File Formats :: JSON",
]
[project.optional-dependencies]
test = [
"pytest-pep8",
"pytest-flakes",
"rstcheck",
"pytest-cov",
]
release = [
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/eblade/jsonobject"
"Bug Tracker" = "https://github.com/eblade/jsonobject/issues"
"Repository" = "https://github.com/eblade/jsonobject.git"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]