-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.56 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
[tool.poetry]
name = "admyral"
version = "0.1.43"
description = ""
authors = ["Daniel Grittner <[email protected]>"]
readme = "README.md"
exclude = [
"examples",
"tests",
"img",
"docs",
"web",
"docker",
"scripts",
]
include = [
"admyral",
"*.txt",
"*.md",
]
[tool.poetry.scripts]
admyral = "admyral.cli.cli:cli"
[tool.poetry.dependencies]
python = "^3.11"
astor = "^0.8.1"
temporalio = "^1.6.0"
aiofiles = "^24.1.0"
pydantic = "^2.7.4"
pip-tools = "^7.4.1"
sqlmodel = "^0.0.22"
fastapi = "^0.111.0"
pydantic-settings = "^2.3.4"
python-dotenv = "^1.0.1"
alembic = "^1.13.2"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.31"}
click = "^8.1.7"
requests = "^2.32.3"
psutil = "^6.0.0"
cryptography = "^42.0.8"
openai = "^1.37.0"
aiohttp = {extras = ["speedups"], version = "^3.9.5"}
resend = "^2.2.0"
boto3 = "^1.34.147"
anthropic = "^0.31.2"
mistralai = "^0.4.2"
msgraph-sdk = "^1.5.3"
pre-commit = "^3.8.0"
ruff = "^0.5.5"
multipledispatch = "^1.0.0"
asyncpg = "^0.29.0"
psycopg2-binary = "^2.9.9"
setuptools-scm = "^8.1.0"
docker = "^7.1.0"
fastapi-nextauth-jwt = "^2.0.0"
pymysql = "^1.1.1"
google-api-python-client = "^2.149.0"
python-dateutil = "^2.9.0.post0"
tenacity = "^9.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
[tool.pdm]
version = { source = "file", path = "admyral/__init__.py" }
distribution = true