-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.32 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
[tool.poetry]
name = "beanhub-cli"
version = "2.0.0"
description = "Command line tools for BeanHub"
authors = ["Fang-Pen Lin <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://beanhub-cli-docs.beanhub.io"
[tool.poetry.scripts]
bh = "beanhub_cli.main:cli"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.4.0"
starlette-wtf = "^0.4.3"
fastapi = ">= 0.98.0, <1.0.0"
jinja2 = ">=3.1.2, <4.0.0"
pyyaml = "^6.0.1"
beancount-black = "^1.0.1"
click = "^8.1.7"
uvicorn = ">=0.23.2, <1.0.0"
beanhub-forms = "^0.1.3"
pydantic-settings = "^2.0.3"
rich = "^13.6.0"
beanhub-import = ">= 1.0.0, <2.0.0"
beanhub-extract = ">= 0.1.0, <1.0.0"
beancount-parser = ">= 1.2.3, <1.3.0"
requests = { version ="^2.32.3", optional = true }
tomli = { version = "^2.2.1", optional = true }
tomli-w = { version = "^1.1.0", optional = true }
pynacl = { version = "^1.5.0", optional = true }
cryptography = { version = "^44.0.0", optional = true}
[tool.poetry.extras]
login = ["requests", "tomli", "tomli-w"]
connect = ["requests", "tomli", "tomli-w", "pynacl", "cryptography"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
pytest-asyncio = "^0.21.1"
pytest-mock = "^3.11.1"
httpx = "^0.25.0"
mkdocs-material = "^9.5.35"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"