-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
55 lines (49 loc) · 1.43 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
55
[tool.poetry]
name = "pymongo_inmemory"
version = "0.4.3"
description = "A mongo mocking library with an ephemeral MongoDB running in memory."
authors = ["Kaizen Dorks <[email protected]>"]
maintainers = [
"Ertugrul Karademir <[email protected]>",
"Daniel Jimenez Garcia",
"Ruben Vasconcelos",
]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/kaizendorks/pymongo_inmemory"
repository = "https://github.com/kaizendorks/pymongo_inmemory"
keywords = ["mongodb", "testing", "pymongo"]
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
include = ["LICENSE"]
[tool.poetry.urls]
"Bug Reports" = "https://github.com/kaizendorks/pymongo_inmemory/issues"
[tool.poetry.dependencies]
python = "^3.9"
pymongo = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
mypy = "*"
flake8 = "*"
[tool.poetry.group.dev.dependencies]
ruff-lsp = "^0.0.35"
black = ">=23.3,<25.0"
twine = "*"
wheel = "*"
setuptools = "*"
click = "*"
[build-system]
requires = ["poetry-core>=0.12"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."