-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.35 KB
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
[project]
name = "bson"
version = "0.5.10"
authors = [
{ name = "Ayun Park", email = "iamparkayun@gmail.com" }
]
description = "BSON codec for Python"
readme = "README.rst"
requires-python = ">=3.9"
dependencies = [
"python-dateutil>=2.9.0.post0",
]
license = {text = "BSD"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["BSON", "codec"]
[project.urls]
Homepage = "https://github.com/py-bson/bson"
PyPI = "https://pypi.org/project/bson/"
[dependency-groups]
lint = [
"ruff>=0.8.3",
]
test = [
"pytest>=8.3.4",
]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["E", "F", "I", "FA"]
ignore = ["B904", "B028", "F841", "E741"]
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = false
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"