-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (41 loc) · 1.26 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
[tool.poetry]
name = "fuzy-jon"
version = "0.0.0"
description = ""
authors = ["lucemia <lucemia@gmail.com>"]
readme = "README.md"
packages = [{ include = "fuzzy_json", from = "src" }]
include = ["src/fuzzy_json/py.typed"]
exclude = ["src/fuzzy_json/tests"]
license = "MIT"
homepage = "https://github.com/livingbio/fuzzy-json"
repository = "https://github.com/livingbio/fuzzy-json"
keywords = ["openai", "json", "llm"]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[tool.poetry.dependencies]
python = "^3.10"
json5 = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
mypy = "^1.11.2"
syrupy = "^4.7.1"
pytest-cov = ">=4.1,<6.0"
coveralls = "^3.3.1"
pytest-recording = "^0.13.2"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"