This repository was archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.73 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
[tool.poetry]
name = "motor-types"
version = "1.0.0b4"
description = "Python stubs for Motor, a Non-Blocking MongoDB driver for Python's Tornado and AsyncIO based applications."
authors = ["L0RD-ZER0 <ackerhon@gmail.com>"]
readme = "README.md"
license = "MIT"
packages = [{include = "motor-stubs"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Text Editors",
"Topic :: Utilities",
"Typing :: Stubs Only",
]
homepage = "https://github.com/L0RD-ZER0/Motor-Types"
repository = "https://github.com/L0RD-ZER0/Motor-Types"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/L0RD-ZER0/Motor-Types/issues"
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
pymongo = { version = ">=4.3.0" }
motor = { version = ">=3.0.0", optional = true }
typing-extensions = { version = ">=4.0.0" }
dnspython = { version = ">=2.3.0", optional = true }
[tool.poetry.group.dev.dependencies]
pre-commit = { version = ">=2.20.0" }
[tool.poetry.extras]
motor = ["dnspython", "motor"]
[tool.isort]
profile = "black"
line_length = 88
append_only = true
src_paths = ["src"]
combine_star = true
combine_as_imports = true
[tool.black]
line-length = 88
target-version = ["py38"]
skip-string-normalization = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"