-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.25 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
# Reference: https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "mongo-diff"
version = "0.1.6"
description = "Compare MongoDB collections from the command line."
authors = []
readme = "README.md"
repository = "https://github.com/eecavanna/mongo-diff"
homepage = "https://github.com/eecavanna/mongo-diff"
documentation = "https://github.com/eecavanna/mongo-diff"
keywords = ["mongodb", "mongo", "diff", "compare", "collection", "database", "data"]
[tool.poetry.dependencies]
python = "^3.10"
# We use `typer` as a CLI framework (it's like "click", but with types).
# Docs: https://typer.tiangolo.com/
typer = "^0.9.0"
# We use `rich` to format console output.
# Docs: https://rich.readthedocs.io/en/stable/index.html
rich = "^13.7.0"
# We use `dictdiffer` to compare Python dictionaries.
# Docs: https://dictdiffer.readthedocs.io/en/latest/
dictdiffer = "^0.9.0"
# We use `pymongo` to communicate with MongoDB servers.
# Docs: (https://pymongo.readthedocs.io/en/stable/
pymongo = "^4.6.1"
[tool.poetry.group.dev.dependencies]
black = ">=24.1.1,<27.0.0"
[tool.poetry.scripts]
# Reference: https://python-poetry.org/docs/pyproject#scripts
mongo-diff = "mongo_diff.mongo_diff:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"