-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.69 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "snakemake-logger-plugin-flowo"
version = "0.1.10"
description = "A Snakemake logger plugin that stores workflow execution data in PostgreSQL"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Haomiao Zhang", email = "zhanghm@iregene.com"},
{name = "Jingmin Zhang", email = "zhangjm@iregene.com"}
]
keywords = ["snakemake", "plugin", "logger", "postgresql", "workflow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"psycopg2-binary>=2.9.9",
"pydantic>=2.11.5",
"pydantic-settings>=2.9.1",
"pygments>=2.19.2",
"snakemake>=9.6.2",
"snakemake-interface-logger-plugins>=1.2.3",
"sqlalchemy>=2.0.41",
]
[project.entry-points."snakemake.logger"]
flowo = "snakemake_logger_plugin_flowo:LogHandler"
[project.scripts]
flowo = "snakemake_logger_plugin_flowo.__main__:main"
[project.urls]
Homepage = "https://github.com/jmzhang1911/snakemake-logger-plugin-flowo"
Repository = "https://github.com/jmzhang1911/snakemake-logger-plugin-flowo"
Issues = "https://github.com/jmzhang1911/snakemake-logger-plugin-flowo/issues"
[tool.hatch.build.targets.wheel]
packages = ["snakemake_logger_plugin_flowo"]
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
# [[tool.uv.index]]
# url = "https://pypi.org/simple/"
# name = "pypi"