blob: 1142dba3093c8c2c3cdc2359f1964178578c6c01 (
plain) (
blame)
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
|
[project]
name = "beancount-oriole"
version = "0.1.0"
description = "A collection of beancount plugins"
requires-python = ">=3.12"
license = {text = "MIT License"}
authors = [
{name = "Wolfgang Müller", email = "wolf@oriole.systems"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"beancount>=2,<4",
]
[project.urls]
Homepage = "https://git.oriole.systems/beancount-oriole/"
Source = "https://git.oriole.systems/beancount-oriole/"
[build-system]
requires = ["setuptools >= 61.1"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
# https://docs.astral.sh/ruff/rules/
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"UP", # pyupgrade
"A", # flake8-builtins
"B", # flake8-bugbear
"SIM", # flake8-simplify
"FURB" # refurb
]
|