-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.34 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
55
56
57
58
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dispatchio"
version = "0.1.0"
authors = [
{ name="Bjorn Olsen", email="bjorn@cloudandthings.io" }
]
maintainers = [
{ name="Bjorn Olsen", email="bjorn@cloudandthings.io" }
]
description = "A lightweight, tick-based batch job orchestrator"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Scheduling",
"Topic :: Utilities",
]
dependencies = [
"pydantic>=2.0",
"pydantic-settings>=2.0",
"click>=8.0",
]
keywords = [
"batch", "scheduler", "orchestrator", "ETL", "data pipeline",
"workflow", "cron", "jobs", "dependencies", "AWS", "tick",
]
licence = "MIT"
licence-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/cloudandthings/dispatchio"
Issues = "https://github.com/cloudandthings/dispatchio/issues"
[project.optional-dependencies]
aws = ["boto3>=1.26"]
dev = [
"pytest>=7.0",
"freezegun>=1.2",
"pytest-cov>=4.0",
]
[project.scripts]
dispatchio = "dispatchio.cli.main:cli"
[tool.hatch.build.targets.wheel]
packages = ["dispatchio"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]