-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.06 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
[project]
name = "mnj"
version = "1.0.0-alpha-3"
description = "Mnj (Mongo Energy) is a helper library to simplify PyMongo interaction"
readme = "README.md"
license = { file = "COPYING" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Database :: Front-Ends",
"Typing :: Typed",
]
authors = [{ name = "Serge Matveenko", email = "[email protected]" }]
requires-python = ">=3.13"
dependencies = [
"attrs>=24.2.0",
"pymongo>=4.10.1",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pyright>=1.1.389",
"pytest>=8.3.3",
"pyupgrade>=3.19.0",
"ruff>=0.7.4",
]
[project.urls]
Homepage = "https://codeberg.org/lig/mnj"
Documentation = "https://mnj.readthedocs.io/"
Repository = "https://codeberg.org/lig/mnj"
"Bug Tracker" = "https://codeberg.org/lig/mnj/issues"
Changelog = "https://codeberg.org/lig/mnj/releases"