-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (39 loc) · 1.08 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[project]
name = "believe"
authors = [{name = "Seth Wang", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
description = "A easy to use validator for json content"
requires-python = '>=3.6'
dynamic = ["version"]
keywords = ["json", "validate", "validator"]
[project.urls]
Home = "https://github.com/pkyosx/believe"
[project.optional-dependencies]
test = [
"coverage<7.0.0",
"pytest",
"pytest-cov",
"coverage-lcov",
"toml",
]
publish = [
"flit"
]
[tool.isort]
profile = "black"
src_paths = ["believe"]
force_single_line = true