-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.22 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "mongo_objects"
authors = [
{ name="Jonathan Lindstrom", email="lindstrom.j@headwaters.com.sg" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pymongo",
]
description = "Access MongoDB documents and subdocuments through user-defined UserDict and proxy objects."
dynamic = ["version"]
keywords = ["Mongo", "MongoDB", "pymongo"]
license = {text = "MIT License"}
readme = "README.rst"
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/lindstrom-j/mongo_objects"
Documentation = "https://mongo-objects.headwaters.com.sg/en/latest/"
Issues = "https://github.com/lindstrom-j/mongo_objects/issues"
[tool.hatch.version]
path = "docs/source/conf.py"
[tool.hatch.build.targets.wheel]
packages = ["src/mongo_objects"]
[tool.hatch.build.targets.sdist]
artifacts = [
"docs/build/html",
]
exclude = [
".gitignore",
"pyproject.toml",
]
include = [
"src",
"tests",
"sample",
]
[tool.hatch.build.targets.sdist.sources]
"docs/build/html" = "docs"