-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (76 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
88 lines (76 loc) · 1.99 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
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
[project]
name = "beancount-cli"
version = "0.2.7"
description = "A CLI tool to manage Beancount ledgers"
readme = "README.md"
authors = [
{ name = "Roman Medvedev", email = "pypi@romavm.dev" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"beancount>=3.0.0",
"beanquery>=0.1.0",
"pydantic>=2.0.0",
"python-dateutil>=2.8.2",
"beanprice>=2.1.0",
"pydantic-settings>=2.0.0",
"agentyper",
]
keywords = ["beancount", "cli", "accounting", "automation", "agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Accounting",
]
[project.urls]
Homepage = "https://github.com/romamo/beancount-cli"
Repository = "https://github.com/romamo/beancount-cli"
Issues = "https://github.com/romamo/beancount-cli/issues"
[project.scripts]
bean = "beancount_cli.cli:main"
[tool.hatch.build.targets.sdist]
include = [
"src/beancount_cli",
"tests",
"CHANGELOG.md",
"README.md",
"LICENSE",
]
exclude = [
".agent",
".github",
"uv.lock",
"tmp",
"dist",
]
[tool.hatch.build.targets.wheel]
packages = ["src/beancount_cli"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"bandit>=1.8.6",
"mypy>=1.19.1",
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.9.2",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["agentyper.Argument", "agentyper.Option", "typer.Argument", "typer.Option"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E501"]