comparison flow/pyproject.toml @ 10:13438795d896

rewrite with prefect flows and whoosh search, but it's in a nested pdm env
author drewp@bigasterisk.com
date Thu, 11 Jul 2024 17:35:31 -0700
parents
children
comparison
equal deleted inserted replaced
9:d1b54241a731 10:13438795d896
1 [project]
2 name = "flow"
3 version = "0.1.0"
4 description = "Default template for PDM package"
5 authors = [
6 {name = "", email = ""},
7 ]
8 dependencies = [
9 "prefect>=2.19.7",
10 "lxml>=5.2.2",
11 "httpx>=0.27.0",
12 "cssselect>=1.2.0",
13 "whoosh>=2.7.4",
14 "ipython>=8.26.0",
15 ]
16 requires-python = "==3.11.*"
17 readme = "README.md"
18 license = {text = "MIT"}
19
20
21 [tool.pdm]
22 distribution = false
23
24 [tool.pdm.scripts]
25 _.env_file = "env"
26 run_prefect_server = "prefect server start"
27 run_build_flow = "python build_index.py"
28 start_build = "prefect deployment run buildIndex/buildIndex"