-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.49 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>=80.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyrex"
version = "0.10.23"
description = "Hyrex is the open-source COLD task orchestration framework built on Postgres."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Trevor Reed", email = "trevor@hyrex.io" },
{ name = "Mark Dawson", email = "mark@hyrex.io" }
]
keywords = ["hyrex", "task", "queue", "async"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
requires-python = ">=3.11"
dependencies = [
"annotated-types>=0.7.0",
"asyncpg>=0.30.0",
"click==8.1.7",
"colorama>=0.4.6",
"croniter>=6.0.0",
"boto3>=1.35.98",
"grpcio>=1.71.0",
"protobuf>=5.29.5,<6.0.0",
"psycopg[binary,pool]>=3.2.1",
"pydantic>=2.8.2",
"pydantic_core>=2.20.1",
"python-dotenv>=1.0.0",
"SQLAlchemy>=2.0.31",
"sqlmodel>=0.0.21",
"tenacity>=9.1.2",
"typer==0.15.3",
"typing_extensions>=4.12.2",
"uuid6==2024.7.10"
]
[project.optional-dependencies]
dev = [
"black>=22.3.0", # For code formatting
]
[project.scripts]
hyrex = "hyrex.cli:cli"
[project.urls]
"Homepage" = "https://github.com/hyrex-labs/hyrex-python"
"Source Code" = "https://github.com/hyrex-labs/hyrex-python"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools]
packages.find = { where = ["."], include = ["hyrex*"], exclude = ["app*"] }