-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
99 lines (93 loc) · 2.15 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pipelime-python"
authors = [
{ name="Eyecan.ai", email="[email protected]" },
]
description = "Data workflows, cli and dataflow automation."
readme = "README.md"
license = { text="GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
keywords = [
"pipelime", "dataset", "dataflow", "workflow", "orchestration"
]
dependencies = [
"typer>=0.6",
"rich>=9.9.0",
"tqdm",
"pyyaml",
"toml",
"loguru",
"numpy",
"imageio>=2.17.0",
"tifffile",
"albumentations>=1.0.0",
"trimesh",
"astunparse",
"python-box",
"deepdiff",
"filelock",
"pydash",
"pydantic>=1.10.8,<2",
"schema",
"pyzmq",
"dictquery",
"minio",
"requests",
"billiard",
"textual>=0.26.0",
]
dynamic = [ "version" ]
[project.optional-dependencies]
draw = ["pygraphviz"]
tests = [
"pytest",
"pytest-cov",
"pytest-asyncio",
]
dev = [
"pylama",
"black",
"flake8",
]
build = [
"hatch",
"build",
]
docs = [
"Sphinx==5.1.1",
# "sphinx-material==0.0.35",
"sphinx-immaterial==0.11.3",
"myst-parser==0.18.0",
"sphinxcontrib-mermaid==0.7.1",
]
[project.urls]
"Source" = "https://github.com/eyecan-ai/pipelime-python"
"Issues" = "https://github.com/eyecan-ai/pipelime-python/issues"
"Documentation" = "http://pipelime-python.readthedocs.io/"
[project.scripts]
pipelime = "pipelime.cli.main:run_typer_app"
[tool.hatch.version]
path = "pipelime/__init__.py"
[tool.hatch.build]
include = [
"pipelime/**/*.py",
"pipelime/**/*.css",
"LICENSE",
]