-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.19 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
[project]
name = "close-mongo-ops-manager"
version = "0.1.9"
description = "Monitor and kill MongoDB operations"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [{ name = "Vicenç Juan Tomàs Monserrat", email = "[email protected]" }]
dependencies = [
"pymongo>=4.10.1, <5.0.0",
"textual>=1.0.0, <2.0.0",
]
keywords = [
"mongo", "operations", "manager"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Database :: Front-Ends"
]
# [project.scripts]
# close-mongo-ops-manager = "app:main"
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling.build"
# [tool.hatch.build]
# packages = ["./"]
[project.urls]
Documentation = "https://github.com/closeio/close-mongo-ops-manager#readme"
Issues = "https://github.com/closeio/close-mongo-ops-manager/issues"
Source = "https://github.com/closeio/close-mongo-ops-manager"