-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mongo-validations-generator"
version = "1.2.0"
description = "Generate MongoDB validation schemas from Python type annotations and Pydantic models."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Alejandro Castillo", email = "alejandro@all-win.software" }
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"pydantic>=2.10.6",
"pymongo>=4.11.3",
]
[project.urls]
Homepage = "https://github.com/all-win-solutions/mongo-validations-generator"
Repository = "https://github.com/all-win-solutions/mongo-validations-generator"
Issues = "https://github.com/all-win-solutions/mongo-validations-generator/issues"
Changelog = "https://github.com/all-win-solutions/mongo-validations-generator/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pytest>=8.3.5",
"ruff>=0.11.2",
]
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "mongo_validations_generator.tests.*"
check_untyped_defs = true