-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.85 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
[project]
name = "dotflow_mongodb"
version = "0.1.2"
authors = [
{ name="Fernando Celmer", email="[email protected]" },
]
license = {file = "LICENSE"}
description = "Dotflow Storage MongoDB"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"dotflow",
"pymongo"
]
classifiers = [
'Development Status :: 4 - Beta',
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/dotflow-io/dotflow-mongodb"
Issues = "https://github.com/dotflow-io/dotflow-mongodb/issues"
Repository = "https://github.com/dotflow-io/dotflow-mongodb"
Documentation = "https://github.com/dotflow-io/dotflow-mongodb/blob/master/README.md"
[tool.poetry]
name = "dotflow_mongodb"
version = "0.1.2"
description = "Dotflow Storage MongoDB"
authors = ["Fernando Celmer <[email protected]>"]
readme = "README.md"
license = "MIT"
package-mode = true
homepage = "https://github.com/dotflow-io/dotflow-mongodb"
documentation = "https://dotflow-io.github.io/dotflow/"
repository = "https://github.com/dotflow-io/dotflow-mongodb"
classifiers = [
'Development Status :: 4 - Beta',
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.9.0"
dotflow = "0.10.0.dev1"
pymongo = "^4.11.2"
[tool.poetry.group.dev.dependencies]
build = "^1.2.2.post1"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"