-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (42 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (42 loc) · 1.23 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pipeline_factory"
authors = [
{name = "Hristo Gueorguiev", email = "hristo.gueorguiev@gmail.com"},
]
description = "Python server framework to define, manage, schedule and execute custom defined code pipelines and series of pipeline across multiple worker processes"
readme = "README.rst"
requires-python = ">=3.10"
keywords = ["task", "pipeline", "schedule", "workers", "async", "pipeline framework"]
license = {text = "MIT License"}
classifiers = [
"Framework :: FastAPI",
"Programming Language :: Python :: 3",
]
dependencies = [
"fastapi",
"sqlmodel",
"croniter",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/izo0x90/pipeline-factory"
Issues = "https://github.com/izo0x90/pipeline-factory/issues"
[project.optional-dependencies]
dev = [
"pyright",
"ruff",
"build",
"twine"
]
[tool.setuptools.package-data]
"pipeline_factory.server.templates" = ["*.*"]
[project.scripts]
plfcli = "pipeline_factory.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pipeline_factory"]
[tool.setuptools_scm]
version_file = "src/pipeline_factory/_version.py"