-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.57 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "mongojet"
description = "Async MongoDB client for Python"
authors = [{name = "Roman Snegirev", email = "[email protected]"}]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version"]
dependencies = ["pymongo>=4.6.2", "typing_extensions>=4.10.0",]
[project.urls]
homepage = "https://github.com/romis2012/mongojet"
repository = "https://github.com/romis2012/mongojet"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312"]
skip-string-normalization = true
preview = true
verbose = true
[tool.flake8]
max-line-length = 88
ignore = "E203,W503"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "session"