-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (87 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (87 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/monggregate"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/LICENSE",
"/readme.md",
"/pyproject.toml",
]
[project]
name = "monggregate"
version = "0.22.1"
description = "MongoDB aggregation pipelines made easy. Joins, grouping, counting and much more..."
readme = "readme.md"
authors = [{ name = "Vianney Mixtur", email = "vianney.mixtur@outlook.fr" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.6.0",
"pyhumps>=3.0",
"typing-extensions>=4.0",
]
[project.optional-dependencies]
mongodb = [
"pymongo>=3.0.0",
"motor>=3.0.0",
]
[project.urls]
Homepage = "https://github.com/VianneyMI/monggregate"
documentation = "https://vianneymi.github.io/monggregate/"
[tool.bumpver]
current_version = "0.22.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"src/monggregate/__init__.py" = ['__version__ = "{version}"']
[tool.setuptools]
packages = ["monggregate", "tests"]
[tool.setuptools.package-dir]
monggregate = "src/monggregate"
tests = "tests"
[dependency-groups]
test = [
"pytest>=8.3.5",
"pytest-html>=3.2.0",
"python-dotenv>=1.0.0",
"certifi",
]
lint = [
"mypy>=1.6.1",
"ruff",
"black",
]
doc = [
"mkdocs==1.5.2",
"mkdocs-material==9.2.7",
]
dev = [
"pytest>=8.3.5",
"pytest-html>=3.2.0",
"python-dotenv>=1.0.0",
"certifi",
"mypy>=1.6.1",
"ruff",
"black",
"mkdocs==1.5.2",
"mkdocs-material==9.2.7",
]