-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[project]
name = "mongomancy"
dynamic = ["version", ]
authors = [
{ name = "Tom Trval", email = "thandeus@gmail.com" },
]
description = "Pymongo based python client with data definition layer."
readme = "README.md"
license = { text = "GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.10"
dependencies = [
'pymongo>=4.0',
]
keywords = [
"mongo",
"python",
"pymongo",
"database",
"nosql",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"Programming Language :: Python :: 3",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/Ryu-CZ/mongomancy"
"Bug Tracker" = "https://github.com/Ryu-CZ/mongomancy/issues"
[options]
test_suite = "tests"
[tool.setuptools]
package-dir = {"" = "src"}
packages = [
"mongomancy",
]
[tool.setuptools.package-data]
"mongomancy" = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "mongomancy.__version__"}
[tool.black]
line_length = 120
target_version = ["py310", "py311"]
[coverage.run]
branch = true
source = [
"src/mongomancy",
"tests",
]
[coverage.paths]
source = "mongomancy"