forked from kaizendorks/pymongo_inmemory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.35 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
[tool.poetry]
name = "pymongo_inmemory"
version = "0.2.11"
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.6",
"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.6"
pymongo = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
mypy = "*"
pytest = "*"
pytest-pythonpath = "*"
twine = "*"
wheel = "*"
setuptools = "*"
click = "^8.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"