forked from antoniorodr/cronboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1005 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "cronboard"
authors = [
{ name = "Antonio Rodriguez", email = "kontakt@antoniorodriguez.no" },
]
description = "A terminal-based dashboard for managing cron jobs"
version = "0.3.1"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
dependencies = [
"bcrypt>=5.0.0",
"cron-descriptor>=2.0.6",
"croniter>=6.0.0",
"dt-croniter>=6.0.1",
"paramiko>=4.0.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"python-crontab>=3.3.0",
"textual>=6.2.1",
"textual-autocomplete>=4.0.6",
"textual-dev>=1.7.0",
"tomlkit>=0.13.3",
]
[project.urls]
Repository = "https://github.com/antoniorodr/cronboard"
Issues = "https://github.com/antoniorodr/cronboard/issues"
[project.scripts]
cronboard = "cronboard.app:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.pytest.ini_options]
pythonpath = [".", "src"]
[tool.setuptools.package-data]
"cronboard" = ["static/css/*.tcss"]